login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A033652
Trajectory of 13 under map x->x + (x-with-digits-reversed).
2
13, 44, 88, 176, 847, 1595, 7546, 14003, 44044, 88088, 176176, 847847, 1596595, 7553546, 14007103, 44177144, 88354288, 176599676, 853595347, 1597190705, 6668108656, 13236127322, 35608290553, 71117571206
OFFSET
0,1
COMMENTS
To get the next term, reverse the present term and add it to itself.
FORMULA
a(n+1) = a(n) + {a(n) reversed}.
EXAMPLE
44 = 13 + 31.
MATHEMATICA
NestList[#+FromDigits[Reverse[IntegerDigits[#]]]&, 13, 30] (* Harvey P. Dale, Mar 04 2015 *)
CROSSREFS
Row n=13 of A243238.
Sequence in context: A224102 A123294 A015247 * A026914 A226514 A159742
KEYWORD
nonn,base
AUTHOR
STATUS
approved