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.

A004845 Numbers that are the sum of at most 5 positive 5th powers.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 32, 33, 34, 35, 36, 64, 65, 66, 67, 96, 97, 98, 128, 129, 160, 243, 244, 245, 246, 247, 275, 276, 277, 278, 307, 308, 309, 339, 340, 371, 486, 487, 488, 489, 518, 519, 520, 550, 551, 582, 729, 730, 731, 761, 762, 793, 972, 973, 1004, 1024
Offset: 1

Views

Author

Keywords

Crossrefs

Column k=5 of A336820.

Programs

  • Maple
    b:= proc(n, i, t) option remember; n=0 or i>0 and t>0
          and (b(n, i-1, t) or i^5<=n and b(n-i^5, i, t-1))
        end:
    a:= proc(n) option remember; local k;
          for k from 1+ `if`(n=1, -1, a(n-1))
          while not b(k, iroot(k, 5), 5) do od; k
        end:
    seq(a(n), n=1..50);  # Alois P. Heinz, Sep 16 2016
  • Mathematica
    Select[Table[n, {n, 0, 1200}], Length[PowersRepresentations[#, 5, 5]] > 0 &] (* Vladimir Joseph Stephan Orlovsky, Jul 19 2011 *)