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.

A162251 Sum of digits of product of previous terms, with a(1) = 2.

Original entry on oeis.org

2, 2, 4, 7, 4, 16, 22, 34, 31, 34, 49, 70, 67, 61, 85, 88, 76, 70, 94, 106, 76, 133, 139, 133, 157, 187, 193, 187, 202, 196, 220, 196, 202, 214, 229, 232, 301, 259, 247, 304, 346, 304, 337, 358, 355, 358, 328, 376, 409, 412, 445, 466, 472, 466, 445, 475, 481, 520
Offset: 1

Views

Author

Keywords

Comments

Starting with a(1) = 1 produces the all 1's sequence.

Crossrefs

Programs

  • Maple
    A[1]:= 2: P:= 2:
    for n from 2 to 100 do
      x:= convert(convert(P,base,10),`+`);
      if length(x) > 997 then break fi;
      A[n]:= x;
      P:= P*x;
    od:
    seq(A[i],i=1..100); # Robert Israel, Jan 16 2025