[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A051957
a(n) = smallest number > a(n-1) such that a(1)*a(2)*...*a(n) - 1 is a prime.
5
3, 4, 5, 6, 8, 9, 11, 14, 18, 20, 21, 27, 28, 37, 62, 77, 86, 97, 100, 107, 109, 166, 167, 181, 196, 225, 262, 266, 268, 274, 278, 290, 305, 345, 378, 385, 414, 429, 438, 442, 498, 503, 516, 531, 573, 595, 596, 611, 640, 665, 749, 794, 870
OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1000 (terms 1..200 from T. D. Noe)
MATHEMATICA
seq={3}; Do[n=Last[seq]+1; While[!PrimeQ[n Times@@seq-1], n++]; AppendTo[ seq, n]; , {60}]; seq (* Harvey P. Dale, Oct 21 2011 *)
CROSSREFS
Sequence in context: A026464 A191885 A292868 * A139483 A051954 A049821
KEYWORD
nice,nonn
AUTHOR
Felice Russo, Dec 21 1999
STATUS
approved