A217845 Numbers which are the sums of consecutive fifth powers.
0, 1, 32, 33, 243, 275, 276, 1024, 1267, 1299, 1300, 3125, 4149, 4392, 4424, 4425, 7776, 10901, 11925, 12168, 12200, 12201, 16807, 24583, 27708, 28732, 28975, 29007, 29008, 32768, 49575, 57351, 59049, 60476, 61500, 61743, 61775, 61776, 91817, 100000, 108624
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
nMax = 200000; t = {0}; Do[k = n; s = 0; While[s = s + k^5; s <= nMax, AppendTo[t, s]; k++], {n, nMax^(1/5)}]; t = Union[t]