OFFSET
1,1
EXAMPLE
The trajectory of 101 is part of the trajectory of 100; the trajectory of 485 joins the trajectory of 100 at 61105 after 5 steps.
MATHEMATICA
limit = 10^3; x = NestList[ # + IntegerReverse[#] &, 100, limit];
Select[Range[1291],
Intersection[NestList[ # + IntegerReverse[#] &, #, limit],
x] != {} &] (* Robert Price, Oct 20 2019 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Klaus Brockhaus, May 07 2002
STATUS
approved