login
A386329
Primes without {1, 3} as digits.
1
2, 5, 7, 29, 47, 59, 67, 79, 89, 97, 227, 229, 257, 269, 277, 409, 449, 457, 467, 479, 487, 499, 509, 547, 557, 569, 577, 587, 599, 607, 647, 659, 677, 709, 727, 757, 769, 787, 797, 809, 827, 829, 857, 859, 877, 887, 907, 929, 947, 967, 977, 997, 2027, 2029, 2069
OFFSET
1,1
MATHEMATICA
Select[Prime[Range[120]], DigitCount[#, 10, 1] == 0 && DigitCount[#, 10, 3] == 0 &]
PROG
(Magma) [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 2, 4, 5, 6, 7, 8, 9]];
(Python) print(list(islice(primes_with("02456789"), 41))) # uses function/imports in A385776
(PARI) primes_with(, 1, [0, 2, 4, 5, 6, 7, 8, 9]) \\ uses function in A385776
CROSSREFS
Intersection of A038603 and A038611.
Sequence in context: A171831 A192560 A174288 * A386163 A293062 A293063
KEYWORD
nonn,base,easy
AUTHOR
Jason Bard, Jul 19 2025
STATUS
approved