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.

A386076 Primes having only {0, 4, 8, 9} as digits.

Original entry on oeis.org

89, 409, 449, 499, 809, 4049, 4099, 4409, 4889, 4909, 4999, 8009, 8089, 8849, 8999, 9049, 9949, 40009, 40099, 40499, 40849, 40949, 44089, 44449, 44809, 44909, 48049, 48409, 48449, 48809, 48889, 48989, 49009, 49409, 49499, 49999, 80449, 80489, 80809, 80849, 80909
Offset: 1

Views

Author

Jason Bard, Jul 16 2025

Keywords

Crossrefs

Subsequence of A030433.
Supersequence of A385768, A385772, A385796.

Programs

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

A386128 Primes having only {1, 4, 8, 9} as digits.

Original entry on oeis.org

11, 19, 41, 89, 149, 181, 191, 199, 419, 449, 491, 499, 811, 881, 911, 919, 941, 991, 1181, 1481, 1489, 1499, 1811, 1889, 1949, 1999, 4111, 4441, 4481, 4889, 4919, 4999, 8111, 8191, 8419, 8819, 8849, 8941, 8999, 9181, 9199, 9419, 9491, 9811, 9941, 9949, 11119
Offset: 1

Views

Author

Jason Bard, Jul 17 2025

Keywords

Crossrefs

Supersequence of A260270, A260271, A385783, A385796.

Programs

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

A386159 Primes having only {2, 4, 8, 9} as digits.

Original entry on oeis.org

2, 29, 89, 229, 449, 499, 829, 929, 2999, 4229, 4289, 4889, 4999, 8429, 8849, 8929, 8999, 9829, 9929, 9949, 22229, 24229, 24499, 24889, 24989, 28229, 28289, 28429, 28499, 28949, 29429, 29989, 42299, 42499, 42829, 42899, 42929, 42989, 44249, 44449, 48299, 48449
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A385785, A385790, A385796.

Programs

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

A386177 Primes having only {3, 4, 8, 9} as digits.

Original entry on oeis.org

3, 43, 83, 89, 349, 383, 389, 433, 439, 443, 449, 499, 839, 883, 983, 3343, 3389, 3433, 3449, 3499, 3833, 3889, 3943, 3989, 4339, 4349, 4483, 4493, 4889, 4933, 4943, 4993, 4999, 8389, 8443, 8839, 8849, 8893, 8933, 8999, 9343, 9349, 9433, 9439, 9833, 9839, 9883
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A199348, A199349, A385792, A385796.

Programs

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

A386192 Primes having only {4, 5, 8, 9} as digits.

Original entry on oeis.org

5, 59, 89, 449, 499, 599, 859, 4549, 4889, 4999, 5449, 5849, 8599, 8849, 8999, 9859, 9949, 44449, 44549, 44959, 45589, 45599, 45949, 45959, 45989, 48449, 48589, 48859, 48889, 48989, 49459, 49499, 49549, 49559, 49999, 54449, 54499, 54559, 54949, 54959, 55589, 55849
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A385793, A385796, A385798.

Programs

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

A386195 Primes having only {4, 7, 8, 9} as digits.

Original entry on oeis.org

7, 47, 79, 89, 97, 449, 479, 487, 499, 787, 797, 877, 887, 947, 977, 997, 4447, 4787, 4789, 4799, 4877, 4889, 4987, 4999, 7477, 7487, 7489, 7499, 7789, 7877, 7879, 7949, 8447, 8747, 8779, 8849, 8887, 8999, 9479, 9497, 9749, 9787, 9887, 9949, 44449, 44497, 44777
Offset: 1

Views

Author

Jason Bard, Jul 18 2025

Keywords

Crossrefs

Supersequence of A106110, A261183, A385795, A385796.

Programs

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