1
0
www.mikescher.com/www/statics/euler/Euler_Problem-046_explanation.md
2018-02-03 16:50:58 +01:00

404 B

I really missed my sieve of erastothenes. There were really a few problems without primes in a row.

In this problem we go through all primes i, search through all smaller primes j were (i-j)/2 is a quadratic number. If you can't find one, this falsifies the theorem.

Also we use the code from problem 46 to calculate the integer square root.