OFFSET
1,1
COMMENTS
A162996(n) approximates the {kn}-th prime number, which in turn approximates the n-th Ramanujan prime, with k = 2.216 nearly optimal for n in [1..1000] since a(n) - 2*sqrt(a(n)) < R_n < a(n) + 2*sqrt(a(n)) in that range. Since R_n ~ Prime(2n) ~ 2n * (log(2n)+1) ~ 2n * log(2n), whereas A162996(n) ~ Prime(kn) ~ kn * (log(kn)+1) ~ kn * log(kn), giving A162996(n) / R_n ~ k/2 = 2.216/2 = 1.108 which implies an asymptotic overestimate of about 10.8% (a better approximation would need k to depend on n and be asymptotic to 2). Consequently, a(n) - 2*sqrt(a(n)) < R_n < a(n) + 2*sqrt(a(n)) will fail pretty early (R_n falling below the lower bound) as n grows beyond 1000.
LINKS
Daniel Forgues, Table of n, a(n) for n=1..1000
CROSSREFS
KEYWORD
sign
AUTHOR
Daniel Forgues, Jul 21 2009, Jul 29 2009
STATUS
approved