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.

A019422 Numbers whose sum of divisors is a fourth power.

Original entry on oeis.org

1, 217, 510, 642, 710, 742, 782, 795, 862, 935, 1177, 1207, 1219, 2667, 3937, 7590, 7854, 8743, 9481, 9798, 9858, 10810, 10934, 11186, 11235, 11510, 11594, 11715, 11985, 12082, 12243, 12903, 12945, 13022, 13462, 13587, 13685, 13822, 14223, 15085
Offset: 1

Views

Author

Keywords

References

  • J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 217, p. 62, Ellipses, Paris 2008.

Programs

  • Mathematica
    Select[Range[16000],IntegerQ[Power[DivisorSigma[1,#], (4)^-1]]&] (* Harvey P. Dale, Jan 22 2012 *)
  • PARI
    c=0; for(n=1, 8240486, if(ispower(sigma(n), 4), c++; write("b019422.txt", c " " n))) /* Donovan Johnson, Jun 13 2013 */