OFFSET
1,2
COMMENTS
a(16) > 2*10^16.
a(n) exists for every n if Dickson's conjecture is true. - Charles R Greathouse IV, Nov 30 2012
LINKS
Bill Taylor et al., Sets producing primes, sci.math (2003)
EXAMPLE
After a(1)=1, a(2)=2, a(3)=6, we want m, the smallest number >6 such that m+1, 2m+1 and 6m+1 are all prime: this is m = 18 = a(4).
MATHEMATICA
f[s_List] := Block[{k = s[[-1]] + 1, m = s}, While[ Union@ PrimeQ[k*m + 1] != {True}, k++]; Append[s, k]]; Nest[f, {1}, 10] (* Robert G. Wilson v, Dec 02 2012 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(9)-a(13) found by Phil Carmody.
a(14)-a(15) from Don Reble, Oct 15 2012
Edited by N. J. A. Sloane, Dec 01 2012
STATUS
approved