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 A386183 #7 Jul 18 2025 18:20:30 %S A386183 3,5,53,59,83,89,353,359,383,389,593,599,839,853,859,883,953,983,3359, %T A386183 3389,3533,3539,3559,3583,3593,3833,3853,3889,3989,5333,5393,5399, %U A386183 5839,5939,5953,8353,8389,8539,8599,8839,8893,8933,8999,9533,9539,9833,9839,9859 %N A386183 Primes having only {3, 5, 8, 9} as digits. %H A386183 Jason Bard, <a href="/A386183/b386183.txt">Table of n, a(n) for n = 1..10000</a> %H A386183 <a href="/index/Pri#PrimesWithDigits">Index to entries for primes with digits in a given set</a> %t A386183 Flatten[Table[Select[FromDigits /@ Tuples[{3, 5, 8, 9}, n], PrimeQ], {n, 7}]] %o A386183 (Magma) [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [3, 5, 8, 9]]; %o A386183 (Python) print(list(islice(primes_with("3589"), 41))) # uses function/imports in A385776 %o A386183 (PARI) primes_with(, 1, [3, 5, 8, 9]) \\ uses function in A385776 %Y A386183 Supersequence of A260226, A260227, A385792, A385798. %Y A386183 Cf. A000040, A385776. %K A386183 nonn,base,easy %O A386183 1,1 %A A386183 _Jason Bard_, Jul 18 2025