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.

A014365 Aliquot sequence starting at 1134.

Original entry on oeis.org

1134, 1770, 2550, 4146, 4158, 7362, 8628, 11532, 16272, 29670, 46362, 46374, 48666, 48678, 70362, 86118, 92058, 95622, 95634, 180846, 246834, 381006, 460458, 562902, 612138, 612150, 1316298, 1350582, 1509690, 3086790
Offset: 0

Views

Author

Keywords

References

  • Richard K. Guy, Unsolved Problems in Number Theory, 3rd Edition, Springer, 2004, Section B6, pp. 92-95.

Crossrefs

Cf. A098007 (length of aliquot sequences); some other examples: A008885 (starting at 30) .. A008892 (starting at 276), A014360 (starting at 552) .. A014364 (starting at 1074), see link to index for a more complete list.
Cf. A001065.

Programs

  • Mathematica
    f[n_] := DivisorSigma[1, n] - n; NestList[f, 1134, 100] (* Robert G. Wilson v, Dec 22 2012 *)
  • PARI
    a(n, a=1134)={for(i=1, n, a=sigma(a)-a); a} \\ M. F. Hasler, Feb 25 2018

Formula

a(n+1) = A001065(a(n)). - R. J. Mathar, Oct 11 2017