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.

A260125 Primes having only {0, 2, 3} as digits.

Original entry on oeis.org

2, 3, 23, 223, 233, 2003, 2203, 2333, 3023, 3203, 3323, 20023, 20233, 20323, 20333, 22003, 22303, 23003, 23203, 23333, 30203, 30223, 30323, 32003, 32203, 32233, 32303, 32323, 33023, 33203, 33223, 200003, 200023, 200033, 200323, 203023, 203233, 203323
Offset: 1

Views

Author

Vincenzo Librandi, Jul 17 2015

Keywords

Crossrefs

Cf. Primes that contain only the digits (2,3,k): this sequence (k=0), A062350 (k=1), A199342 (k=4), A214703 (k=5), A260126 (k=6), A214704 (k=7), A260127 (k=8), A260128 (k=9).
Cf. A020458 (a subsequence).

Programs

  • Magma
    [p: p in PrimesUpTo(300000) | Intseq(p) subset {2,3,0}];
  • Mathematica
    Select[Prime[Range[2 10^4]], Complement[IntegerDigits[#], {2, 3, 0}]=={} &]
    Select[FromDigits/@Tuples[{0,2,3},6],PrimeQ] (* Harvey P. Dale, Mar 06 2020 *)

A386046 Primes having only {0, 2, 3, 9} as digits.

Original entry on oeis.org

2, 3, 23, 29, 223, 229, 233, 239, 293, 929, 2003, 2029, 2039, 2099, 2203, 2239, 2293, 2309, 2333, 2339, 2393, 2399, 2903, 2909, 2939, 2999, 3023, 3203, 3209, 3229, 3299, 3323, 3329, 3923, 3929, 9029, 9203, 9209, 9239, 9293, 9323, 9923, 9929, 20023, 20029, 20233
Offset: 1

Views

Author

Jason Bard, Jul 15 2025

Keywords

Crossrefs

Supersequence of A260125, A260128, A261268.

Programs

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

A386090 Primes having only {1, 2, 3, 9} as digits.

Original entry on oeis.org

2, 3, 11, 13, 19, 23, 29, 31, 113, 131, 139, 191, 193, 199, 211, 223, 229, 233, 239, 293, 311, 313, 331, 911, 919, 929, 991, 1123, 1129, 1193, 1213, 1223, 1229, 1231, 1291, 1319, 1321, 1399, 1913, 1931, 1933, 1993, 1999, 2111, 2113, 2129, 2131, 2213, 2221, 2239
Offset: 1

Views

Author

Jason Bard, Jul 16 2025

Keywords

Crossrefs

Supersequence of A062350, A260128, A329761, A385776.

Programs

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

A386143 Primes having only {2, 3, 4, 9} as digits.

Original entry on oeis.org

2, 3, 23, 29, 43, 223, 229, 233, 239, 293, 349, 433, 439, 443, 449, 499, 929, 2239, 2243, 2293, 2333, 2339, 2393, 2399, 2423, 2939, 2999, 3229, 3299, 3323, 3329, 3343, 3433, 3449, 3499, 3923, 3929, 3943, 4229, 4243, 4339, 4349, 4423, 4493, 4933, 4943, 4993, 4999
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A199342, A199349, A260128, A385785.

Programs

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

A386149 Primes having only {2, 3, 6, 9} as digits.

Original entry on oeis.org

2, 3, 23, 29, 223, 229, 233, 239, 263, 269, 293, 929, 2239, 2269, 2293, 2333, 2339, 2393, 2399, 2633, 2663, 2693, 2699, 2939, 2963, 2969, 2999, 3229, 3299, 3323, 3329, 3623, 3923, 3929, 6229, 6263, 6269, 6299, 6323, 6329, 9239, 9293, 9323, 9623, 9629, 9923, 9929
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A260126, A260128, A385788.

Programs

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

A386151 Primes having only {2, 3, 7, 9} as digits.

Original entry on oeis.org

2, 3, 7, 23, 29, 37, 73, 79, 97, 223, 227, 229, 233, 239, 277, 293, 337, 373, 379, 397, 727, 733, 739, 773, 797, 929, 937, 977, 997, 2237, 2239, 2273, 2293, 2297, 2333, 2339, 2377, 2393, 2399, 2729, 2777, 2797, 2927, 2939, 2999, 3229, 3299, 3323, 3329, 3373, 3727
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A214704, A260128, A260382, A261182.

Programs

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

A386152 Primes having only {2, 3, 8, 9} as digits.

Original entry on oeis.org

2, 3, 23, 29, 83, 89, 223, 229, 233, 239, 283, 293, 383, 389, 823, 829, 839, 883, 929, 983, 2239, 2293, 2333, 2339, 2383, 2389, 2393, 2399, 2833, 2939, 2999, 3229, 3299, 3323, 3329, 3389, 3823, 3833, 3889, 3923, 3929, 3989, 8233, 8293, 8329, 8389, 8839, 8893
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A260127, A260128, A385790, A385792.

Programs

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