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-7 of 7 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 *)

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

Original entry on oeis.org

3, 5, 11, 13, 31, 53, 101, 103, 113, 131, 151, 311, 313, 331, 353, 503, 1013, 1031, 1033, 1051, 1103, 1151, 1153, 1301, 1303, 1511, 1531, 1553, 3001, 3011, 3301, 3313, 3331, 3511, 3533, 5003, 5011, 5051, 5101, 5113, 5153, 5303, 5333, 5351, 5501, 5503, 5531, 10103
Offset: 1

Views

Author

Jason Bard, Jul 14 2025

Keywords

Crossrefs

Subsequence of A036958.
Supersequence of A199325, A260044, A260224.

Programs

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

A386105 Primes having only {1, 3, 4, 5} as digits.

Original entry on oeis.org

3, 5, 11, 13, 31, 41, 43, 53, 113, 131, 151, 311, 313, 331, 353, 431, 433, 443, 541, 1151, 1153, 1433, 1451, 1453, 1511, 1531, 1543, 1553, 3313, 3331, 3343, 3413, 3433, 3511, 3533, 3541, 4111, 4133, 4153, 4441, 4451, 4513, 5113, 5153, 5333, 5351, 5413, 5431, 5441
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A199341, A199345, A260224, A260268.

Programs

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

A386110 Primes having only {1, 3, 5, 6} as digits.

Original entry on oeis.org

3, 5, 11, 13, 31, 53, 61, 113, 131, 151, 163, 311, 313, 331, 353, 563, 613, 631, 653, 661, 1151, 1153, 1163, 1361, 1511, 1531, 1553, 1613, 1663, 3163, 3313, 3331, 3361, 3511, 3533, 3613, 3631, 5113, 5153, 5333, 5351, 5531, 5563, 5651, 5653, 6113, 6131, 6133, 6151
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A260224, A260225, A385777, A385779.

Programs

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

A386111 Primes having only {1, 3, 5, 7} as digits.

Original entry on oeis.org

3, 5, 7, 11, 13, 17, 31, 37, 53, 71, 73, 113, 131, 137, 151, 157, 173, 311, 313, 317, 331, 337, 353, 373, 557, 571, 577, 733, 751, 757, 773, 1117, 1151, 1153, 1171, 1373, 1511, 1531, 1553, 1571, 1733, 1753, 1777, 3137, 3313, 3331, 3371, 3373, 3511, 3517, 3533
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A087363, A260224, A260379, A260828.

Programs

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

A386112 Primes having only {1, 3, 5, 8} as digits.

Original entry on oeis.org

3, 5, 11, 13, 31, 53, 83, 113, 131, 151, 181, 311, 313, 331, 353, 383, 811, 853, 881, 883, 1151, 1153, 1181, 1381, 1511, 1531, 1553, 1583, 1811, 1831, 3181, 3313, 3331, 3511, 3533, 3581, 3583, 3833, 3851, 3853, 3881, 5113, 5153, 5333, 5351, 5381, 5531, 5581, 5813
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A260224, A260226, A385778, A385780.

Programs

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