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