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.

A004835 Numbers that are the sum of at most 6 nonzero 4th powers.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 16, 17, 18, 19, 20, 21, 32, 33, 34, 35, 36, 48, 49, 50, 51, 64, 65, 66, 80, 81, 82, 83, 84, 85, 86, 96, 97, 98, 99, 100, 101, 113, 114, 115, 116, 129, 130, 131, 145, 146, 161, 162, 163, 164, 165, 166, 178, 179, 180, 181, 194, 195, 196, 210, 211, 226
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    Reap[For[n = 0, n < 1000, n++, If[MatchQ[ PowersRepresentations[n, 6, 4], {{, , , , , }, _}], Print[n]; Sow[n]]]][[2, 1]] (* Jean-François Alcover, Oct 30 2017 *)