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.

A112296 Smret suoiverp eht fo mus fo esrever.

Original entry on oeis.org

9, 9, 81, 99, 891, 9801, 9801, 19602, 39204, 79497, 499851, 548856, 1077021, 2274822, 4459554, 8909109, 70282971, 87111288, 664223571, 730645938, 5791910751, 6272012637, 36351143631, 49985258994, 88971507999, 789520249881, 868572264879, 7470454307481
Offset: 1

Views

Author

N. J. A. Sloane, Nov 30 2005

Keywords

References

  • Zak Seidov, Posting to Seq Fan mailing list, Nov 28 2005.

Crossrefs

Cf. A004086.

Programs

  • Maple
    a[0]:=9: S:=a[0]: for n from 1 to 30 do S1:=convert(S,base,10): c:=nops(S1): a[n]:=add(S1[c+1-j]*10^(j-1),j=1..c): S:=S+a[n]: od: seq(a[n],n=0..30); # Emeric Deutsch, Feb 03 2006
  • Mathematica
    Nest[Append[#, IntegerReverse@ Total@ #] &, {9}, 27] (* Michael De Vlieger, Sep 09 2021 *)
  • Python
    def aupton(terms):
        alst, s = [9], 9
        for n in range(2, terms+1):
            alst.append(int(str(s)[::-1]))
            s += alst[-1]
        return alst
    print(aupton(28)) # Michael S. Branicky, Sep 09 2021

Extensions

More terms from Emeric Deutsch, Feb 03 2006