OFFSET
1,2
COMMENTS
Nonprime complement of A275542.
LINKS
Robert Price, Table of n, a(n) for n = 1..4492
EXAMPLE
Write the digits of the positive integers in continuous form: 1,2,3,4,5,6,7,8,9,1,0,1,1,1,2,1,3,1,4,1,5,...; then remove prime digits (2,3,5,7) from the sequence.
MATHEMATICA
DeleteCases[Map[IntegerDigits, Range@ 120] // Flatten, k_ /; PrimeQ@ k] (* Michael De Vlieger, Aug 03 2016 *)
Table[DeleteCases[IntegerDigits[n], _?PrimeQ], {n, 100}]//Flatten (* Harvey P. Dale, Dec 31 2017 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Dave Durgin, Aug 02 2016
EXTENSIONS
More terms from Robert Price, Mar 31 2017
STATUS
approved