1
0
www.mikescher.com/www/statics/euler/euler_021_explanation.md
2017-11-08 17:39:51 +01:00

215 B

Most of the time is here spent in the NumberOfDivisors function. So we first cache every possible result of this function (from 0 to 10000). The rest is simple searching for numbers where a == D(D(a)) and a != D(a).