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.

A047903 a(1) = 13; for n > 0, a(n+1) = a(n) * sum of digits of a(n).

Original entry on oeis.org

13, 52, 364, 4732, 75712, 1665664, 56632576, 2265303040, 56632576000, 2265303040000, 56632576000000, 2265303040000000, 56632576000000000, 2265303040000000000, 56632576000000000000, 2265303040000000000000
Offset: 1

Views

Author

Miklos SZABO (mike(AT)ludens.elte.hu)

Keywords

Comments

After the 7th element, every second element has the same beginning. a(9+2k) = 40 * a(8+2k) = 40 * 25 * a(7+2k).

Crossrefs

Cf. A047892.

Programs

  • Mathematica
    NestList[# Total[IntegerDigits[#]]&,13,20] (* Harvey P. Dale, Jan 08 2019 *)