OFFSET
1,3
COMMENTS
"Exceeds" can be interpreted as ">" or ">=" since the corresponding primes are never multiples of their indices. - R. J. Mathar, Jun 08 2008
Equivalently, a(n) = minimal k such that prime(k)/k >= n. - Enoch Haga, Oct 19 2007
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..50
EXAMPLE
x exceeds 3*pi(x) when pi(x)=12, so a(3)=12
MATHEMATICA
Join[{k = 1}, Table[While[Prime[k]/k < n, k++]; k, {n, 2, 18}]] (* Jayanta Basu, Jul 10 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(24)-a(28) from Robert G. Wilson v, Sep 26 2005
Edited by N. J. A. Sloane, Jun 30 2008 at the suggestion of R. J. Mathar.
a(29)-a(50) obtained from the values of A038625 computed by Jan Büthe. - Giovanni Resta, Sep 01 2018
STATUS
approved