login
A386334
Primes without {1, 8} as digits.
1
2, 3, 5, 7, 23, 29, 37, 43, 47, 53, 59, 67, 73, 79, 97, 223, 227, 229, 233, 239, 257, 263, 269, 277, 293, 307, 337, 347, 349, 353, 359, 367, 373, 379, 397, 409, 433, 439, 443, 449, 457, 463, 467, 479, 499, 503, 509, 523, 547, 557, 563, 569, 577, 593, 599, 607
OFFSET
1,1
MATHEMATICA
Select[Prime[Range[120]], DigitCount[#, 10, 1] == 0 && DigitCount[#, 10, 8] == 0 &]
PROG
(Magma) [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 2, 3, 4, 5, 6, 7, 9]];
(Python) print(list(islice(primes_with("02345679"), 41))) # uses function/imports in A385776
(PARI) primes_with(, 1, [0, 2, 3, 4, 5, 6, 7, 9]) \\ uses function in A385776
CROSSREFS
Intersection of A038603 and A038616.
Sequence in context: A024770 A038603 A106116 * A386332 A386330 A091727
KEYWORD
nonn,base,easy
AUTHOR
Jason Bard, Jul 19 2025
STATUS
approved