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.

A386333 Primes without {1, 7} as digits.

This page as a plain text file.
%I A386333 #8 Jul 19 2025 21:40:30
%S A386333 2,3,5,23,29,43,53,59,83,89,223,229,233,239,263,269,283,293,349,353,
%T A386333 359,383,389,409,433,439,443,449,463,499,503,509,523,563,569,593,599,
%U A386333 643,653,659,683,809,823,829,839,853,859,863,883,929,953,983,2003,2029,2039
%N A386333 Primes without {1, 7} as digits.
%H A386333 Jason Bard, <a href="/A386333/b386333.txt">Table of n, a(n) for n = 1..10000</a>
%H A386333 <a href="/index/Pri#PrimesWithDigits">Index to entries for primes with digits in a given set</a>
%t A386333 Select[Prime[Range[120]], DigitCount[#, 10, 1] == 0 && DigitCount[#, 10, 7] == 0 &]
%o A386333 (Magma) [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 2, 3, 4, 5, 6, 8, 9]];
%o A386333 (Python) print(list(islice(primes_with("02345689"), 41))) # uses function/imports in A385776
%o A386333 (PARI) primes_with(, 1, [0, 2, 3, 4, 5, 6, 8, 9]) \\ uses function in A385776
%Y A386333 Intersection of A038603 and A038615.
%Y A386333 Cf. A000040, A020455, A385776.
%K A386333 nonn,base,easy
%O A386333 1,1
%A A386333 _Jason Bard_, Jul 19 2025