OFFSET
1,2
COMMENTS
The only prime among the first 98 terms is a(6) = 124567. Does the 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], {3}]]]], {n, 20}]] (* Robert Price, Nov 05 2018 *)
Join[{1, 12}, Table[FromDigits[Join[{1, 2}, Flatten[IntegerDigits/@Range[4, n]]]], {n, 4, 20}]] (* Harvey P. Dale, Sep 17 2019 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Sep 25 2015
STATUS
approved