login
A118529
Start with 1 and repeatedly reverse the digits and add 12 to get the next term.
2
1, 13, 43, 46, 76, 79, 109, 913, 331, 145, 553, 367, 775, 589, 997, 811, 130, 43, 46, 76, 79, 109, 913, 331, 145, 553, 367, 775, 589, 997, 811, 130, 43, 46, 76, 79, 109, 913, 331, 145, 553, 367, 775, 589, 997, 811, 130, 43, 46, 76, 79, 109, 913, 331
OFFSET
1,2
LINKS
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, 0, 0, 0, 0, 0, 0, 1).
FORMULA
After 2 steps enters a cycle of length 15.
MATHEMATICA
NestList[IntegerReverse[#]+12&, 1, 60] (* Harvey P. Dale, Dec 16 2024 *)
PROG
(PARI) a(n)=if(n>2, [997, 811, 130, 43, 46, 76, 79, 109, 913, 331, 145, 553, 367, 775, 589][n%15+1], 12*n-11) \\ Charles R Greathouse IV, May 29 2026
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
N. J. A. Sloane, May 06 2006
STATUS
approved