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.

A118613 Start with 1 and repeatedly reverse the digits and add 27 to get the next term.

Original entry on oeis.org

1, 28, 109, 928, 856, 685, 613, 343, 370, 100, 28, 109, 928, 856, 685, 613, 343, 370, 100, 28, 109, 928, 856, 685, 613, 343, 370, 100, 28, 109, 928, 856, 685, 613, 343, 370, 100, 28, 109, 928, 856, 685, 613, 343, 370, 100, 28, 109, 928, 856, 685, 613, 343, 370
Offset: 1

Views

Author

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

Keywords

Comments

After 1 step enters a cycle of length 9.

Crossrefs

Programs

  • Mathematica
    NestList[IntegerReverse[#]+27&,1,60] (* or *) PadRight[{1},60,{100,28,109,928,856,685,613,343,370}] (* Harvey P. Dale, Apr 20 2025 *)