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 A386064 #6 Jul 15 2025 23:58:31 %S A386064 3,5,53,59,353,359,503,509,593,599,953,3359,3533,3539,3559,3593,5003, %T A386064 5009,5039,5059,5099,5303,5309,5333,5393,5399,5503,5903,5939,5953, %U A386064 9059,9533,9539,30059,30509,30539,30553,30559,30593,33053,33353,33359,33503,33533,33599 %N A386064 Primes having only {0, 3, 5, 9} as digits. %H A386064 Jason Bard, <a href="/A386064/b386064.txt">Table of n, a(n) for n = 1..10000</a> %H A386064 <a href="/index/Pri#PrimesWithDigits">Index to entries for primes with digits in a given set</a> %t A386064 Select[FromDigits /@ Tuples[{0, 3, 5, 9}, n], PrimeQ] %o A386064 (Magma) [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 3, 5, 9]]; %o A386064 (Python) print(list(islice(primes_with("0359"), 41))) # uses function/imports in A385776 %o A386064 (PARI) primes_with(, 1, [0, 3, 5, 9]) \\ uses function in A385776 %Y A386064 Supersequence of A260223, A260227, A385769. %Y A386064 Cf. A000040, A385776. %K A386064 nonn,base,easy %O A386064 1,1 %A A386064 _Jason Bard_, Jul 15 2025