cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A386329 Primes without {1, 3} as digits.

This page as a plain text file.
%I A386329 #6 Jul 19 2025 05:12:12
%S A386329 2,5,7,29,47,59,67,79,89,97,227,229,257,269,277,409,449,457,467,479,
%T A386329 487,499,509,547,557,569,577,587,599,607,647,659,677,709,727,757,769,
%U A386329 787,797,809,827,829,857,859,877,887,907,929,947,967,977,997,2027,2029,2069
%N A386329 Primes without {1, 3} as digits.
%H A386329 Jason Bard, <a href="/A386329/b386329.txt">Table of n, a(n) for n = 1..10000</a>
%H A386329 <a href="/index/Pri#PrimesWithDigits">Index to entries for primes with digits in a given set</a>
%t A386329 Select[Prime[Range[120]], DigitCount[#, 10, 1] == 0 && DigitCount[#, 10, 3] == 0 &]
%o A386329 (Magma) [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 2, 4, 5, 6, 7, 8, 9]];
%o A386329 (Python) print(list(islice(primes_with("02456789"), 41))) # uses function/imports in A385776
%o A386329 (PARI) primes_with(, 1, [0, 2, 4, 5, 6, 7, 8, 9]) \\ uses function in A385776
%Y A386329 Intersection of A038603 and A038611.
%Y A386329 Cf. A000040, A385776.
%K A386329 nonn,base,easy
%O A386329 1,1
%A A386329 _Jason Bard_, Jul 19 2025