A181128 Difference of two positive 9th powers.
0, 511, 19171, 19682, 242461, 261632, 262143, 1690981, 1933442, 1952613, 1953124, 8124571, 9815552, 10058013, 10077184, 10077695, 30275911, 38400482, 40091463, 40333924, 40353095, 40353606, 93864121, 124140032, 132264603, 133955584
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n=1..1000
Crossrefs
Programs
-
Mathematica
nn=10^15; p=9; Union[Reap[Do[n=i^p-j^p; If[n<=nn, Sow[n]], {i,Ceiling[(nn/p)^(1/(p-1))]}, {j,i}]][[2,1]]]
Comments