OFFSET
1,1
COMMENTS
The sequence is started with a(1) = 100 and always extended with the smallest integer not yet present and not leading to a contradiction.
LINKS
Jean-Marc Falcoz, Table of n, a(n) for n = 1..2441
EXAMPLE
Pick the digit "1" of the first term, 100. This "1" says that you should jump over 1 digit to the right (as "1" is odd). You'll land on the second "0" of 100.
Pick the leftmost digit "0" of the same term, 100. This "0" says that you should jump over 0 digit to the left (as "0" is even). You slide (land) on the "1" of 100.
Pick the rightmost digit "0" of 100. This "0" says that you should jump over 0 digit to the left (as "0" is even). You slide (land) on the first "0" of 100.
We see that any of those possible three movements leaves you "inside" the chosen term "t".
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Eric Angelini and Jean-Marc Falcoz, Mar 28 2017
STATUS
approved