OFFSET
1,2
COMMENTS
It is easy to see that in all such sequences a(n+2) > a(n). Therefore for any pair of initial terms, the sequence consist of two interweaving strictly increasing subsequences formed by the elements at odd and even positions. So there are no loops in such sequences.
PROG
(PARI) a=[1, 2]; for(k=3, 50, a=concat(a, [eval(concat(Str(a[k-2]), Str(a[k-1])))\a[k-1]])); a
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Eric Angelini, Aug 05 2007
EXTENSIONS
More terms, PARI program and comment from Max Alekseyev, Aug 05 2007
STATUS
approved