A038606 Least k such that k-th prime > n * k.
1, 5, 12, 31, 69, 181, 443, 1052, 2701, 6455, 15928, 40073, 100362, 251707, 637235, 1617175, 4124437, 10553415, 27066974, 69709680, 179992909, 465769803, 1208198526, 3140421716, 8179002096, 21338685407, 55762149030, 145935689361, 382465573483, 1003652347100
Offset: 1
Keywords
Links
- Giovanni Resta, Table of n, a(n) for n = 1..50
- Labos, E. Graph of first 50000 terms of A004648
- Andrew R. Booker, The Nth Prime Page
Programs
-
Maple
A038606 := proc(n) for k from 1 do if ithprime(k)> n*k then return k; end if; end do: end proc: # R. J. Mathar, Aug 24 2013
-
Mathematica
k = 1; Do[ While[ Floor[ Prime[k]/k] < n, k++ ]; Print[k]; k++, {n, 1, 30} ]
-
PARI
k=1;n=1;forprime(p=3,4e9,if(p/n++>k,print1(n", ");k++)) \\ Charles R Greathouse IV, Sep 06 2011
Extensions
Edited by Robert G. Wilson v, Jan 25 2002
a(21)=179992909 corrected by Ray Chandler, Dec 01 2004
a(29)-a(30) from Charles R Greathouse IV, Sep 06 2011
a(31)-a(50) obtained from the values of A038625 computed by Jan Büthe. - Giovanni Resta, Sep 01 2018
Comments