OFFSET
0,2
LINKS
Eric M. Schmidt, Table of n, a(n) for n = 0..10000
Safia Aoudjit and Djamel Berkane, Explicit Estimates Involving the Primorial Integers and Applications, J. Int. Seq., Vol. 24 (2021), Article 21.7.8.
EXAMPLE
a(2) = 4, since 2*3*5 < 7^2, but 2*3*5*7 > 11^2. (The product of the first 4 primes is greater than the 5th prime squared.)
MATHEMATICA
a = {}; Do[x = 1; While[Prime[x + 1] >= (Product[Prime[x], {x, 1, x}])^(1/n), x++ ]; AppendTo[a, x], {n, 1, 100}]; a (* Artur Jasinski, May 11 2007 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Aug 30 2000
STATUS
approved