login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A064489 a(n) = smallest m such that prime(m) has prime(n) decimal digits. 2
5, 26, 1230, 78499, 455052512, 37607912019, 279238341033926, 24739954287740861, 201467286689315906291 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = 1 + A006880(A000040(n-1)) for n > 1.
a(n) = A000720(A064490(n)).
EXAMPLE
n=1: prime(5) = 11 is the first prime with 2 = prime(1) decimal digits.
PROG
(PARI) l(n)=ln=0; while(n, n=floor(n/10); ln++); return(ln);
a=0; for(n=1, 10^6, x=l(prime(n)); if(isprime(x), b=x; if(b>a, a=b; print1(n, ", "))))
(Python)
from sympy import prime, nextprime, primepi
def a(n): return primepi(nextprime(10**(prime(n)-1)))
print([a(n) for n in range(1, 6)]) # Michael S. Branicky, May 26 2021
CROSSREFS
Sequence in context: A226125 A132509 A281747 * A081089 A180928 A366332
KEYWORD
base,nonn,hard,more
AUTHOR
Jason Earls, Oct 04 2001
EXTENSIONS
More terms from David Wasserman, Jul 22 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 6 21:30 EDT 2024. Contains 372297 sequences. (Running on oeis4.)