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 A386358 #6 Jul 20 2025 17:51:57 %S A386358 2,3,5,11,13,23,31,41,43,53,61,83,101,103,113,131,151,163,181,211,223, %T A386358 233,241,251,263,281,283,311,313,331,353,383,401,421,431,433,443,461, %U A386358 463,503,521,523,541,563,601,613,631,641,643,653,661,683,811,821,823 %N A386358 Primes without {7, 9} as digits. %H A386358 Jason Bard, <a href="/A386358/b386358.txt">Table of n, a(n) for n = 1..10000</a> %H A386358 <a href="/index/Pri#PrimesWithDigits">Index to entries for primes with digits in a given set</a> %t A386358 Select[Prime[Range[120]], DigitCount[#, 10, 7] == 0 && DigitCount[#, 10, 9] == 0 &] %o A386358 (Magma) [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 1, 2, 3, 4, 5, 6, 8]]; %o A386358 (Python) print(list(islice(primes_with("01234568"), 41))) # uses function/imports in A385776 %o A386358 (PARI) primes_with(, 1, [0, 1, 2, 3, 4, 5, 6, 8]) \\ uses function in A385776 %Y A386358 Intersection of A038615 and A038617. %Y A386358 Cf. A000040, A020471, A385776. %K A386358 nonn,base,easy %O A386358 1,1 %A A386358 _Jason Bard_, Jul 20 2025