OFFSET
1,1
COMMENTS
If the greater than sign in the definition is replaced by >=, we get A048964. - R. J. Mathar, May 01 2008
LINKS
David Wilson, Table of n, a(n) for n = 1..10000
FORMULA
a(n) should be asymptotic to C*n (where 1<C<3/2).
EXAMPLE
n=1: prime(1) = 2, 3! > 2, a(1) = 3.
n=2: prime(1)*prime(2) = 6, 4! > 6, a(2) = 4.
MATHEMATICA
Module[{nn=100, prmorl, fctorl}, prmolr=FoldList[Times, Prime[Range[ nn]]]; fctorl=Range[nn]!; Table[Position[fctorl, _?(#>prmolr[[n]]&), 1, 1], {n, 70}]]//Flatten (* Harvey P. Dale, Jul 04 2021 *)
PROG
(PARI) a(n) = my(k=1, p=vecprod(primes(n))); while(k! <= p, k++); k; \\ Michel Marcus, Feb 18 2021
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Aug 17 2002
EXTENSIONS
Corrected by Peter Pein (petsie(AT)dordos.net), May 01 2008
STATUS
approved