This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A217848 #4 Oct 23 2012 15:08:03 %S A217848 0,1,256,257,6561,6817,6818,65536,72097,72353,72354,390625,456161, %T A217848 462722,462978,462979,1679616,2070241,2135777,2142338,2142594,2142595, %U A217848 5764801,7444417,7835042,7900578,7907139,7907395,7907396,16777216,22542017,24221633,24612258 %N A217848 Numbers which are the sums of consecutive eighth powers. %H A217848 T. D. Noe, <a href="/A217848/b217848.txt">Table of n, a(n) for n = 1..1000</a> %t A217848 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] %Y A217848 Cf. A034705, A217843-A217850. %K A217848 nonn %O A217848 1,3 %A A217848 _T. D. Noe_, Oct 23 2012