A118225 Start with 1 and repeatedly reverse the digits and add 74 to get the next term.
1, 75, 131, 205, 576, 749, 1021, 1275, 5795, 6049, 9480, 923, 403, 378, 947, 823, 402, 278, 946, 723, 401, 178, 945, 623, 400, 78, 161, 235, 606, 680, 160, 135, 605, 580, 159, 1025, 5275, 5799, 10049, 94075, 57123, 32249, 94297, 79323, 32471, 17497, 79545
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.
Programs
-
Mathematica
NestList[74+IntegerReverse[#]&,1,50] (* Harvey P. Dale, Jan 05 2022 *)
Extensions
a(14) corrected by Georg Fischer, Jul 17 2020
Comments