A181127 Difference of two positive 8th powers.
0, 255, 6305, 6560, 58975, 65280, 65535, 325089, 384064, 390369, 390624, 1288991, 1614080, 1673055, 1679360, 1679615, 4085185, 5374176, 5699265, 5758240, 5764545, 5764800, 11012415, 15097600, 16386591, 16711680, 16770655, 16776960
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n=1..1000
Crossrefs
Programs
-
Mathematica
nn=10^14; p=8; 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