The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A072986 Least k such that Product_{i=1..k} (prime(i) + 1) >= n*Product_{i=1..k} prime(i). 3
1, 2, 6, 11, 24, 52, 113, 248, 553, 1245, 2828, 6481, 14963, 34770, 81253, 190836, 450202, 1066269, 2534269, 6042375, 14447465, 34632759 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Least k such that A054640(k) >= n*A002110(k). - Michel Marcus, Jan 09 2021
LINKS
FORMULA
Lim_{n->infinity} a(n+1)/a(n) = e. - Robert Gerbicz, May 09 2008
MATHEMATICA
a = b = k = 1; Do[ While[a = a*Prime[k]; b = b*(Prime[k] + 1); b < n*a, k++ ]; Print[k]; k++, {n, 1, 16}]
PROG
(PARI) a(n)=if(n<0, 0, s=1; while(prod(i=1, s, prime(i)+1)<prod(i=1, s, prime(i))*n, s++); s);
CROSSREFS
Sequence in context: A005673 A084308 A067605 * A079047 A160966 A052326
KEYWORD
more,nonn
AUTHOR
Benoit Cloitre, Aug 14 2002
EXTENSIONS
Edited and extended by Robert G. Wilson v, Aug 20 2002
6 more terms from Robert Gerbicz, May 09 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 25 14:05 EDT 2024. Contains 372788 sequences. (Running on oeis4.)