OFFSET
1,1
COMMENTS
Just as the Euclid-Mullin sequence is suggested by Euclid's proof of an infinity of primes, this sequence is suggested by a variation of his proof, showing the existence of an infinity of primes congruent to 3 (mod 4). See Hardy and Wright in the Reference below.
Could also be viewed as a variation on A217759. Restricting the scope of "smallest prime factor congruent to 3 (mod 4)" to the larger of the two algebraic factors of 4Q^2-1 as defined in that sequence results in a sequence essentially the same as this one.
a(18) has 149 digits.
REFERENCES
P. G. L. Dirichlet: Vorlesungen uber Zahlentheorie. Braunschweig, Viewig, Supplement VI, (1871), 24 pages.
G. H. Hardy and E. M. Wright, An Introduction to the Theory of Numbers. 3rd ed., Oxford Univ. Press, 1954, p. 13.
LINKS
Daran Gill, Table of n, a(n) for n = 1..19
EXAMPLE
MATHEMATICA
a={2}; q=1;
For[n=2, n<=12, n++,
q=q*Last[a];
AppendTo[a, Min[Select[FactorInteger[q+1][[All, 1]], Mod[#, 4]==3 &]]];
];
a (* Robert Price, Jul 16 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Daran Gill, Mar 26 2013
STATUS
approved