A386336 Primes without {2, 4} as digits.
3, 5, 7, 11, 13, 17, 19, 31, 37, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 131, 137, 139, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 307, 311, 313, 317, 331, 337, 353, 359, 367, 373, 379, 383, 389, 397, 503, 509, 557, 563, 569
Offset: 1
Links
Programs
-
Magma
[p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 1, 3, 5, 6, 7, 8, 9]];
-
Maple
f:= n-> (l-> add([0, 1, 3, $5..9][l[j]+1]*10^(j-1), j=1..nops(l)))(convert(n, base, 8)): select(isprime, [seq(f(i), i=0..600)])[]; # Alois P. Heinz, Jul 19 2025
-
Mathematica
Select[Prime[Range[120]], DigitCount[#, 10, 2] == 0 && DigitCount[#, 10, 4] == 0 &]
-
PARI
primes_with(, 1, [0, 1, 3, 5, 6, 7, 8, 9]) \\ uses function in A385776
-
Python
print(list(islice(primes_with("01356789"), 41))) # uses function/imports in A385776