OFFSET
1,2
COMMENTS
There are only two primes among the first 98 terms, namely
1234567810111213141516171819 and 1234567810111213141516171819202122232425262728293031323334353637.
Does this sequence contain any other primes?
No other primes through a(10000). - Robert Price, Nov 04 2018
MATHEMATICA
DeleteDuplicates[Table[FromDigits[Flatten[IntegerDigits[Complement[Range[n], {9}]]]], {n, 20}]] (* Robert Price, Nov 05 2018 *)
Module[{nn=20, c}, c=Drop[Range[nn], {9}]; Table[FromDigits[Flatten[ IntegerDigits/@ Take[c, n]]], {n, nn-1}]] (* Harvey P. Dale, Nov 30 2019 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Sep 25 2015
STATUS
approved