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.

A386354 Primes without {6, 7} as digits.

This page as a plain text file.
%I A386354 #6 Jul 20 2025 17:51:41
%S A386354 2,3,5,11,13,19,23,29,31,41,43,53,59,83,89,101,103,109,113,131,139,
%T A386354 149,151,181,191,193,199,211,223,229,233,239,241,251,281,283,293,311,
%U A386354 313,331,349,353,359,383,389,401,409,419,421,431,433,439,443,449,491,499
%N A386354 Primes without {6, 7} as digits.
%H A386354 Jason Bard, <a href="/A386354/b386354.txt">Table of n, a(n) for n = 1..10000</a>
%H A386354 <a href="/index/Pri#PrimesWithDigits">Index to entries for primes with digits in a given set</a>
%t A386354 Select[Prime[Range[120]], DigitCount[#, 10, 6] == 0 && DigitCount[#, 10, 7] == 0 &]
%o A386354 (Magma) [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 1, 2, 3, 4, 5, 8, 9]];
%o A386354 (Python) print(list(islice(primes_with("01234589"), 41))) # uses function/imports in A385776
%o A386354 (PARI) primes_with(, 1, [0, 1, 2, 3, 4, 5, 8, 9]) \\ uses function in A385776
%Y A386354 Intersection of A038614 and A038615.
%Y A386354 Cf. A000040, A020469, A385776.
%K A386354 nonn,base,easy
%O A386354 1,1
%A A386354 _Jason Bard_, Jul 20 2025