A386332 Primes without {1, 6} as digits.
2, 3, 5, 7, 23, 29, 37, 43, 47, 53, 59, 73, 79, 83, 89, 97, 223, 227, 229, 233, 239, 257, 277, 283, 293, 307, 337, 347, 349, 353, 359, 373, 379, 383, 389, 397, 409, 433, 439, 443, 449, 457, 479, 487, 499, 503, 509, 523, 547, 557, 577, 587, 593, 599, 709, 727
Offset: 1
Links
Programs
-
Magma
[p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 2, 3, 4, 5, 7, 8, 9]];
-
Mathematica
Select[Prime[Range[120]], DigitCount[#, 10, 1] == 0 && DigitCount[#, 10, 6] == 0 &]
-
PARI
primes_with(, 1, [0, 2, 3, 4, 5, 7, 8, 9]) \\ uses function in A385776
-
Python
print(list(islice(primes_with("02345789"), 41))) # uses function/imports in A385776