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.

Showing 1-8 of 8 results.

A260223 Primes having only {3, 5, 0} as digits.

Original entry on oeis.org

3, 5, 53, 353, 503, 3533, 5003, 5303, 5333, 5503, 30553, 33053, 33353, 33503, 33533, 35053, 35353, 35533, 50033, 50053, 50333, 50503, 53003, 53353, 53503, 55333, 303053, 303553, 305033, 305353, 305533, 330053, 333503, 333533, 335033, 350003, 350033, 350503
Offset: 1

Views

Author

Vincenzo Librandi, Jul 20 2015

Keywords

Comments

A020462 is subsequence.

Crossrefs

Cf. Primes that contain only the digits (3,5,k): this sequence (k=0), A260224 (k=1), A214703 (k=2), A199345 (k=4), A260225 (k=6), A087363 (k=7), A260226 (k=8), A260227 (k=9).
Cf. A020462.

Programs

  • Magma
    [p: p in PrimesUpTo(600000) | Set(Intseq(p)) subset [3, 5, 0]];
  • Mathematica
    Select[Prime[Range[4 10^4]], Complement[IntegerDigits[#], {3, 5, 0}]=={} &]
    Select[FromDigits/@Tuples[{0,3,5},6],PrimeQ] (* Harvey P. Dale, Jul 19 2019 *)

A386064 Primes having only {0, 3, 5, 9} as digits.

Original entry on oeis.org

3, 5, 53, 59, 353, 359, 503, 509, 593, 599, 953, 3359, 3533, 3539, 3559, 3593, 5003, 5009, 5039, 5059, 5099, 5303, 5309, 5333, 5393, 5399, 5503, 5903, 5939, 5953, 9059, 9533, 9539, 30059, 30509, 30539, 30553, 30559, 30593, 33053, 33353, 33359, 33503, 33533, 33599
Offset: 1

Views

Author

Jason Bard, Jul 15 2025

Keywords

Crossrefs

Supersequence of A260223, A260227, A385769.

Programs

  • Magma
    [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [0, 3, 5, 9]];
    
  • Mathematica
    Select[FromDigits /@ Tuples[{0, 3, 5, 9}, n], PrimeQ]
  • PARI
    primes_with(, 1, [0, 3, 5, 9]) \\ uses function in A385776
  • Python
    print(list(islice(primes_with("0359"), 41))) # uses function/imports in A385776
    

A386113 Primes having only {1, 3, 5, 9} as digits.

Original entry on oeis.org

3, 5, 11, 13, 19, 31, 53, 59, 113, 131, 139, 151, 191, 193, 199, 311, 313, 331, 353, 359, 593, 599, 911, 919, 953, 991, 1151, 1153, 1193, 1319, 1399, 1511, 1531, 1553, 1559, 1913, 1931, 1933, 1951, 1993, 1999, 3119, 3191, 3313, 3319, 3331, 3359, 3391, 3511, 3533
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A260224, A260227, A329761, A385781.

Programs

  • Magma
    [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [1, 3, 5, 9]];
    
  • Mathematica
    Flatten[Table[Select[FromDigits /@ Tuples[{1, 3, 5, 9}, n], PrimeQ], {n, 7}]]
  • PARI
    primes_with(, 1, [1, 3, 5, 9]) \\ uses function in A385776
  • Python
    print(list(islice(primes_with("1359"), 41))) # uses function/imports in A385776
    

A386146 Primes having only {2, 3, 5, 9} as digits.

Original entry on oeis.org

2, 3, 5, 23, 29, 53, 59, 223, 229, 233, 239, 293, 353, 359, 523, 593, 599, 929, 953, 2239, 2293, 2333, 2339, 2393, 2399, 2539, 2593, 2939, 2953, 2999, 3229, 3253, 3259, 3299, 3323, 3329, 3359, 3529, 3533, 3539, 3559, 3593, 3923, 3929, 5233, 5323, 5333, 5393, 5399
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A214703, A260128, A260227, A385786.

Programs

  • Magma
    [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [2, 3, 5, 9]];
    
  • Mathematica
    Flatten[Table[Select[FromDigits /@ Tuples[{2, 3, 5, 9}, n], PrimeQ], {n, 7}]]
  • PARI
    primes_with(, 1, [2, 3, 5, 9]) \\ uses function in A385776
  • Python
    print(list(islice(primes_with("2359"), 41))) # uses function/imports in A385776
    

A386172 Primes having only {3, 4, 5, 9} as digits.

Original entry on oeis.org

3, 5, 43, 53, 59, 349, 353, 359, 433, 439, 443, 449, 499, 593, 599, 953, 3343, 3359, 3433, 3449, 3499, 3533, 3539, 3559, 3593, 3943, 4339, 4349, 4493, 4549, 4933, 4943, 4993, 4999, 5333, 5393, 5399, 5443, 5449, 5939, 5953, 9343, 9349, 9433, 9439, 9533, 9539, 9949
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A199345, A199349, A260227, A385793.

Programs

  • Magma
    [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [3, 4, 5, 9]];
    
  • Mathematica
    Flatten[Table[Select[FromDigits /@ Tuples[{3, 4, 5, 9}, n], PrimeQ], {n, 7}]]
  • PARI
    primes_with(, 1, [3, 4, 5, 9]) \\ uses function in A385776
  • Python
    print(list(islice(primes_with("3459"), 41))) # uses function/imports in A385776
    

A386180 Primes having only {3, 5, 6, 9} as digits.

Original entry on oeis.org

3, 5, 53, 59, 353, 359, 563, 569, 593, 599, 653, 659, 953, 3359, 3533, 3539, 3559, 3593, 3659, 5333, 5393, 5399, 5563, 5569, 5639, 5653, 5659, 5669, 5693, 5939, 5953, 6353, 6359, 6553, 6563, 6569, 6599, 6653, 6659, 6959, 9533, 9539, 33353, 33359, 33533, 33563
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A260225, A260227, A385797.

Programs

  • Magma
    [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [3, 5, 6, 9]];
    
  • Mathematica
    Flatten[Table[Select[FromDigits /@ Tuples[{3, 5, 6, 9}, n], PrimeQ], {n, 7}]]
  • PARI
    primes_with(, 1, [3, 5, 6, 9]) \\ uses function in A385776
  • Python
    print(list(islice(primes_with("3569"), 41))) # uses function/imports in A385776
    

A386182 Primes having only {3, 5, 7, 9} as digits.

Original entry on oeis.org

3, 5, 7, 37, 53, 59, 73, 79, 97, 337, 353, 359, 373, 379, 397, 557, 577, 593, 599, 733, 739, 757, 773, 797, 937, 953, 977, 997, 3359, 3373, 3533, 3539, 3557, 3559, 3593, 3733, 3739, 3779, 3793, 3797, 5333, 5393, 5399, 5557, 5573, 5737, 5779, 5939, 5953, 7333
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A087363, A260227, A260382, A260831.

Programs

  • Magma
    [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [3, 5, 7, 9]];
    
  • Mathematica
    Flatten[Table[Select[FromDigits /@ Tuples[{3, 5, 7, 9}, n], PrimeQ], {n, 7}]]
  • PARI
    primes_with(, 1, [3, 5, 7, 9]) \\ uses function in A385776
  • Python
    print(list(islice(primes_with("3579"), 41))) # uses function/imports in A385776
    

A386183 Primes having only {3, 5, 8, 9} as digits.

Original entry on oeis.org

3, 5, 53, 59, 83, 89, 353, 359, 383, 389, 593, 599, 839, 853, 859, 883, 953, 983, 3359, 3389, 3533, 3539, 3559, 3583, 3593, 3833, 3853, 3889, 3989, 5333, 5393, 5399, 5839, 5939, 5953, 8353, 8389, 8539, 8599, 8839, 8893, 8933, 8999, 9533, 9539, 9833, 9839, 9859
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A260226, A260227, A385792, A385798.

Programs

  • Magma
    [p: p in PrimesUpTo(10^6) | Set(Intseq(p)) subset [3, 5, 8, 9]];
    
  • Mathematica
    Flatten[Table[Select[FromDigits /@ Tuples[{3, 5, 8, 9}, n], PrimeQ], {n, 7}]]
  • PARI
    primes_with(, 1, [3, 5, 8, 9]) \\ uses function in A385776
  • Python
    print(list(islice(primes_with("3589"), 41))) # uses function/imports in A385776
    
Showing 1-8 of 8 results.