The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A059396 Number of primes less than square root of n-th prime; i.e., number of trial divisions by smaller primes to show that n-th prime is indeed prime. 3
0, 0, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Asymptotic to 2*(n/log(n))^(1/2):
Since p_n ~ n * log n, a(n) ~ sqrt(n * log n) / (log (sqrt(n * log n))) ~ 2 * sqrt(n) * sqrt(log n) / (log n + log log n) ~ 2 * sqrt(n / log n). - Daniel Forgues, Sep 04 2018
LINKS
FORMULA
a(n) = A000720(A000196(A000040(n))).
EXAMPLE
a(32) = 5 since the 32nd prime is 131 which is not divisible by 2, 3, 5, 7 or 11 (and does not need to be tested against 13, 17, 19 etc. since 13^2 = 169 > 131).
MAPLE
a:= proc(n) option remember;
numtheory[pi](floor(sqrt(ithprime(n))))
end:
seq(a(n), n=1..100); # Alois P. Heinz, Sep 05 2011
MATHEMATICA
Table[PrimePi[Sqrt[Prime[n]]], {n, 110}] (* Harvey P. Dale, Sep 06 2015 *)
PROG
(PARI) a(n) = primepi(sqrtint(prime(n))); \\ Altug Alkan, Sep 05 2018
CROSSREFS
Sequence in context: A000196 A111850 A343265 * A108602 A305025 A363743
KEYWORD
nonn,easy
AUTHOR
Henry Bottomley, Jan 29 2001
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 15 01:31 EDT 2024. Contains 372536 sequences. (Running on oeis4.)