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.

A230102 a(0)=1; thereafter a(n+1) = a(n) + (product of digits of a(n)).

Original entry on oeis.org

1, 2, 4, 8, 16, 22, 26, 38, 62, 74, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102
Offset: 0

Views

Author

N. J. A. Sloane, Oct 12 2013

Keywords

Comments

Never gets above 102.

Crossrefs

Programs

  • Haskell
    a230102 n = a230102_list !! n
    a230102_list = iterate a230099 1  -- Reinhard Zumkeller, Oct 13 2013
  • Mathematica
    NestList[#+Times@@IntegerDigits[#]&,1,50] (* Harvey P. Dale, Jul 30 2023 *)