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.
%I A386332 #8 Jul 19 2025 21:40:27 %S A386332 2,3,5,7,23,29,37,43,47,53,59,73,79,83,89,97,223,227,229,233,239,257, %T A386332 277,283,293,307,337,347,349,353,359,373,379,383,389,397,409,433,439, %U A386332 443,449,457,479,487,499,503,509,523,547,557,577,587,593,599,709,727 %N A386332 Primes without {1, 6} as digits. %H A386332 Jason Bard, <a href="/A386332/b386332.txt">Table of n, a(n) for n = 1..10000</a> %H A386332 <a href="/index/Pri#PrimesWithDigits">Index to entries for primes with digits in a given set</a> %t A386332 Select[Prime[Range[120]], DigitCount[#, 10, 1] == 0 && DigitCount[#, 10, 6] == 0 &] %o A386332 (Magma) [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 2, 3, 4, 5, 7, 8, 9]]; %o A386332 (Python) print(list(islice(primes_with("02345789"), 41))) # uses function/imports in A385776 %o A386332 (PARI) primes_with(, 1, [0, 2, 3, 4, 5, 7, 8, 9]) \\ uses function in A385776 %Y A386332 Intersection of A038603 and A038614. %Y A386332 Cf. A000040, A020454, A385776. %K A386332 nonn,base,easy %O A386332 1,1 %A A386332 _Jason Bard_, Jul 19 2025