This section is about official bonus problems of Project Euler.
These sometimes pop up after you solve another problem, and it is not well documented when they show up.
According to their copyright statement, these problems are copyrighted unlike the others, so we can't reproduce them here. But we can give answers I believe.
A partial list can be found at: github.com/igorvanloo/Project-Euler-Explained/tree/main/Bonus%20Problems
This was a registration CAPTCHA problem as of 2025:
Among the first 510 thousand square numbers, what is the sum of all the odd squares?
Bash + Python "one-liner":
python -c $'import sys;max=int(sys.argv[1]) + 1;s = 0\nfor i in range(1, max, 2):\n s += i*i\nprint(s)' 510000With indentation:
s = 0
for i in range(1, 510001, 2):
s += i*i
print(s)Popped up for Ciro Santilli on April 19th 2026 after solving Project Euler problem 993.
wget -O secret.png https://projecteuler.net/resources/images/bonus_secret_statement.png?1738588439The output of the program is another image of Euler with caption:
so and the final answer must be inferred to be the string:
Leonhard Articles by others on the same topic
There are currently no matching articles.