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

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

Original entry on oeis.org

3, 5, 53, 353, 503, 563, 653, 3533, 5003, 5303, 5333, 5503, 5563, 5653, 6053, 6353, 6553, 6563, 6653, 30553, 33053, 33353, 33503, 33533, 33563, 35053, 35353, 35363, 35533, 35603, 36353, 36563, 36653, 50033, 50053, 50333, 50363, 50503, 53003, 53353, 53503, 53633
Offset: 1

Views

Author

Jason Bard, Jul 15 2025

Keywords

Crossrefs

Supersequence of A260223, A260225.

Programs

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

Extensions

Mathematica program corrected by Harvey P. Dale, Aug 03 2025

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
    

A386144 Primes having only {2, 3, 5, 6} as digits.

Original entry on oeis.org

2, 3, 5, 23, 53, 223, 233, 263, 353, 523, 563, 653, 2333, 2633, 2663, 3253, 3323, 3533, 3623, 5233, 5323, 5333, 5563, 5623, 5653, 6263, 6323, 6353, 6553, 6563, 6653, 23333, 23563, 23623, 23633, 23663, 25253, 25523, 25633, 26263, 26633, 32233, 32323, 32353, 32363
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A214703, A260126, A260225.

Programs

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

A386169 Primes having only {3, 4, 5, 6} as digits.

Original entry on oeis.org

3, 5, 43, 53, 353, 433, 443, 463, 563, 643, 653, 3343, 3433, 3463, 3533, 3643, 4363, 4463, 4643, 4663, 5333, 5443, 5563, 5653, 6343, 6353, 6553, 6563, 6653, 33343, 33353, 33533, 33563, 34543, 35353, 35363, 35533, 35543, 36343, 36353, 36433, 36563, 36643, 36653
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A199345, A199346, A260225.

Programs

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

A386178 Primes having only {3, 5, 6, 7} as digits.

Original entry on oeis.org

3, 5, 7, 37, 53, 67, 73, 337, 353, 367, 373, 557, 563, 577, 653, 673, 677, 733, 757, 773, 3373, 3533, 3557, 3637, 3673, 3677, 3733, 3767, 5333, 5557, 5563, 5573, 5653, 5657, 5737, 6337, 6353, 6367, 6373, 6553, 6563, 6577, 6637, 6653, 6673, 6733, 6737, 6763, 7333
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A087363, A260225, A260380, A260829.

Programs

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

A386179 Primes having only {3, 5, 6, 8} as digits.

Original entry on oeis.org

3, 5, 53, 83, 353, 383, 563, 653, 683, 853, 863, 883, 3533, 3583, 3833, 3853, 3863, 5333, 5563, 5653, 5683, 6353, 6553, 6563, 6653, 6833, 6863, 6883, 8353, 8363, 8563, 8663, 8863, 33353, 33533, 33563, 33863, 35353, 35363, 35533, 35863, 36353, 36383, 36563, 36583
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A260225, A260226, A385791.

Programs

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