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.

A069589 Smallest prime in which the n-th significant digit is a 3.

Original entry on oeis.org

3, 31, 307, 3001, 30011, 300007, 3000017, 30000001, 300000007, 3000000019, 30000000001, 300000000077, 3000000000013, 30000000000011, 300000000000089, 3000000000000037, 30000000000000029, 300000000000000011, 3000000000000000037, 30000000000000000041
Offset: 1

Views

Author

Amarnath Murthy, Mar 25 2002

Keywords

Crossrefs

Cf. A069588.

Programs

  • Maple
    seq(nextprime(3*10^(j-1)-1), j=1..32);
  • Mathematica
    Join[{3},Table[NextPrime[FromDigits[PadRight[{3},n,0]]],{n,2,20}]] (* Harvey P. Dale, Jun 15 2015 *)
  • PARI
    a(n) = nextprime(3*10^(n-1)); \\ Michel Marcus, Mar 31 2021
  • Python
    from sympy import nextprime
    def a(n): return nextprime(3*10**(n-1)-1)
    print([a(n) for n in range(1, 21)]) # Michael S. Branicky, Mar 31 2021
    

Extensions

More terms from Sascha Kurz, Mar 28 2002