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-6 of 6 results.

A386089 Primes having only {1, 2, 3, 8} as digits.

Original entry on oeis.org

2, 3, 11, 13, 23, 31, 83, 113, 131, 181, 211, 223, 233, 281, 283, 311, 313, 331, 383, 811, 821, 823, 881, 883, 1123, 1181, 1213, 1223, 1231, 1283, 1321, 1381, 1811, 1823, 1831, 2111, 2113, 2131, 2213, 2221, 2281, 2311, 2333, 2381, 2383, 2833, 3121, 3181, 3221
Offset: 1

Views

Author

Jason Bard, Jul 16 2025

Keywords

Crossrefs

Supersequence of A062350, A260127, A385775, A385778.

Programs

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

A386108 Primes having only {1, 3, 4, 8} as digits.

Original entry on oeis.org

3, 11, 13, 31, 41, 43, 83, 113, 131, 181, 311, 313, 331, 383, 431, 433, 443, 811, 881, 883, 1181, 1381, 1433, 1481, 1483, 1811, 1831, 3181, 3313, 3331, 3343, 3413, 3433, 3833, 3881, 4111, 4133, 4441, 4481, 4483, 4813, 4831, 8111, 8311, 8431, 8443, 8831, 11113
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A199341, A199348, A260270, A385778.

Programs

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

A386115 Primes having only {1, 3, 6, 8} as digits.

Original entry on oeis.org

3, 11, 13, 31, 61, 83, 113, 131, 163, 181, 311, 313, 331, 383, 613, 631, 661, 683, 811, 863, 881, 883, 1163, 1181, 1361, 1381, 1613, 1663, 1811, 1831, 1861, 3163, 3181, 3313, 3331, 3361, 3613, 3631, 3833, 3863, 3881, 6113, 6131, 6133, 6163, 6311, 6361, 6661, 6833
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A385777, A385778, A385782, A385791.

Programs

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

A386117 Primes having only {1, 3, 7, 8} as digits.

Original entry on oeis.org

3, 7, 11, 13, 17, 31, 37, 71, 73, 83, 113, 131, 137, 173, 181, 311, 313, 317, 331, 337, 373, 383, 733, 773, 787, 811, 877, 881, 883, 887, 1117, 1171, 1181, 1187, 1373, 1381, 1733, 1777, 1783, 1787, 1811, 1831, 1871, 1873, 1877, 3137, 3181, 3187, 3313, 3331, 3371
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A260379, A260381, A260892, A385778.

Programs

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

A386118 Primes having only {1, 3, 8, 9} as digits.

Original entry on oeis.org

3, 11, 13, 19, 31, 83, 89, 113, 131, 139, 181, 191, 193, 199, 311, 313, 331, 383, 389, 811, 839, 881, 883, 911, 919, 983, 991, 1181, 1193, 1319, 1381, 1399, 1811, 1831, 1889, 1913, 1931, 1933, 1993, 1999, 3119, 3181, 3191, 3313, 3319, 3331, 3389, 3391, 3833, 3881
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A329761, A385778, A385783, A385792.

Programs

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