login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A072986 Least k such that prod( i = 1, k, prime(i)+1)>= n*prod(i = 1, k, prime(i)). 0
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; internal format)
OFFSET

1,2

FORMULA

a(n+1)/a(n)->e as n->infinity - Robert Gerbicz (robert.gerbicz(AT)gmail.com), 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

Adjacent sequences:  A072983 A072984 A072985 * A072987 A072988 A072989

KEYWORD

more,nonn

AUTHOR

Benoit Cloitre (benoit7848c(AT)orange.fr), Aug 14 2002

EXTENSIONS

Edited and extended by Robert G. Wilson v (rgwv(AT)rgwv.com), Aug 20 2002

6 more terms from Robert Gerbicz (robert.gerbicz(AT)gmail.com), May 09 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 23:53 EST 2012. Contains 205689 sequences.