A217848 Numbers which are the sums of consecutive eighth powers.
0, 1, 256, 257, 6561, 6817, 6818, 65536, 72097, 72353, 72354, 390625, 456161, 462722, 462978, 462979, 1679616, 2070241, 2135777, 2142338, 2142594, 2142595, 5764801, 7444417, 7835042, 7900578, 7907139, 7907395, 7907396, 16777216, 22542017, 24221633, 24612258
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
nMax = 10^8; t = {0}; Do[k = n; s = 0; While[s = s + k^8; s <= nMax, AppendTo[t, s]; k++], {n, nMax^(1/8)}]; t = Union[t]