OFFSET
1,2
COMMENTS
The sequence is started with a(1) = 1 and always extended with the smallest integer not yet present that does not lead to a contradiction.
LINKS
Jean-Marc Falcoz, Table of n, a(n) for n = 1..10001
EXAMPLE
1 is not prime but 19 is [1,9].
9 is not prime but 97 is [9,7(0)].
70 is not prime but 701 is [70,1(0)].
10 is not prime but 101 is [10,1(2)].
12 is not prime but 127 is [12,7(2)].
72 is not prime but 727 is [72,7(4)].
74 is not prime but 743 is [74,3(0)].
30 is not prime but 307 is [30,7(5)].
75 is not prime but 751 is [75,1(4)].
14 is not prime but 149 is [14,9(0)].
...
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Eric Angelini and Jean-Marc Falcoz, Aug 05 2016
STATUS
approved