OFFSET
0,1
COMMENTS
To get the next term, reverse the present term and add it to itself.
LINKS
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
KEYWORD
nonn,base
AUTHOR
STATUS
approved