cp's OEIS Frontend

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.

A217844 Numbers which are the sums of consecutive fourth powers.

Original entry on oeis.org

0, 1, 16, 17, 81, 97, 98, 256, 337, 353, 354, 625, 881, 962, 978, 979, 1296, 1921, 2177, 2258, 2274, 2275, 2401, 3697, 4096, 4322, 4578, 4659, 4675, 4676, 6497, 6561, 7793, 8418, 8674, 8755, 8771, 8772, 10000, 10657, 13058, 14354, 14641, 14979, 15235, 15316
Offset: 1

Views

Author

T. D. Noe, Oct 23 2012

Keywords

Crossrefs

Programs

  • Mathematica
    nMax = 20000; t = {0}; Do[k = n; s = 0; While[s = s + k^4; s <= nMax, AppendTo[t, s]; k++], {n, nMax^(1/4)}]; t = Union[t]