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.

A019423 Numbers whose sum of divisors is a fifth power.

Original entry on oeis.org

1, 21, 31, 651, 889, 3210, 3498, 3710, 3882, 3910, 4310, 4922, 4982, 5182, 5457, 5885, 6035, 6095, 6307, 6797, 7117, 7327, 7597, 24573, 27559, 71193, 82110, 90510, 94981, 97410, 98671, 99301, 99510, 100110, 103362, 104622, 107778, 108438, 108822
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [n:n in [1..10000]| IsPower(SumOfDivisors(n),5)]; // Marius A. Burtea, Apr 17 2019
  • PARI
    lista(nn) = {for (i=1, nn, s = sigma(i); if (s == 1 || ispower(s, 5), print1(i, ", ")););} \\ Michel Marcus, Jun 12 2013