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.

A118616 Start with 1 and repeatedly reverse the digits and add 29 to get the next term.

Original entry on oeis.org

1, 30, 32, 52, 54, 74, 76, 96, 98, 118, 840, 77, 106, 630, 65, 85, 87, 107, 730, 66, 95, 88, 117, 740, 76, 96, 98, 118, 840, 77, 106, 630, 65, 85, 87, 107, 730, 66, 95, 88, 117, 740, 76, 96, 98, 118, 840, 77, 106, 630, 65, 85, 87, 107, 730, 66, 95, 88, 117, 740, 76, 96, 98
Offset: 1

Views

Author

Luc Stevens (lms022(AT)yahoo.com), May 08 2006

Keywords

Comments

After 6 steps enters a cycle of length 18.

Crossrefs

Programs

  • Mathematica
    NestList[29+IntegerReverse[#]&,1,70] (* or *) PadRight[{1,30,32,52,54,74},70,{730,66,95,88,117,740,76,96,98,118,840,77,106,630,65,85,87,107}] (* Harvey P. Dale, Apr 29 2022 *)