A118613 Start with 1 and repeatedly reverse the digits and add 27 to get the next term.
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
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
- N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
- Index entries for linear recurrences with constant coefficients, signature (0, 0, 0, 0, 0, 0, 0, 0, 1).
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 *)
Comments