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.

A232488 a(1) = 7; a(n+1) = a(n) + product of nonzero digits of a(n).

Original entry on oeis.org

7, 14, 18, 26, 38, 62, 74, 102, 104, 108, 116, 122, 126, 138, 162, 174, 202, 206, 218, 234, 258, 338, 410, 414, 430, 442, 474, 586, 826, 922, 958, 1318, 1342, 1366, 1474, 1586, 1826, 1922, 1958, 2318, 2366, 2582, 2742, 2854, 3174, 3258, 3498, 4362, 4506, 4626, 4914
Offset: 1

Views

Author

N. J. A. Sloane, Nov 29 2013

Keywords

Crossrefs

Programs

  • Maple
    See A232486.
  • Mathematica
    nxt[n_]:=n+Times@@Select[IntegerDigits[n],#!=0&]; NestList[nxt,7,50] (* Harvey P. Dale, Jun 13 2015 *)