login
A118528
Start with 1 and repeatedly reverse the digits and add 11 to get the next term.
1
1, 12, 32, 34, 54, 56, 76, 78, 98, 100, 12, 32, 34, 54, 56, 76, 78, 98, 100, 12, 32, 34, 54, 56, 76, 78, 98, 100, 12, 32, 34, 54, 56, 76, 78, 98, 100, 12, 32, 34, 54, 56, 76, 78, 98, 100, 12, 32, 34, 54, 56, 76, 78, 98, 100, 12, 32, 34, 54, 56, 76, 78, 98, 100
OFFSET
1,2
FORMULA
After 1 step enters a cycle of length 9.
MATHEMATICA
NestList[11 + IntegerReverse[#] &, 1, 99] (* Paolo Xausa, Jun 04 2026 *)
PROG
(PARI) a(n)=if(n>1, 1819553572893220\51^(n%9)%51*2, 1) \\ Charles R Greathouse IV, Jun 03 2026
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
N. J. A. Sloane, May 06 2006
STATUS
approved