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”).

A212605
a(n) is the smallest prime such that it and the previous four primes are all of the form x^2 + n * y^2.
1
2633, 587, 1777, 2633, 239521, 862471, 2017, 208457, 586273, 147451, 4951, 586273, 207073, 612553, 102871, 208457, 301681, 351439, 242447, 2076901, 55948657, 27487, 119503, 9425257, 239521, 5188507, 128467, 75853, 74049413
OFFSET
1,1
EXAMPLE
a(7)=2017 since 2017 = 225 + 7*256, 2011 = 1444 + 7*81, 2003 = 1156 + 7*121, 1999 = 1936 + 7*9, and 1997 = 625 + 7*196 are all consecutive primes.
MATHEMATICA
Table[again = True; lim = 10; While[again, lim2 = lim/Sqrt[n]; t = PrimePi[Select[Union[Flatten[Table[x^2 + n y^2, {x, 0, lim}, {y, 0, lim2}]]], # < lim^2 && PrimeQ[#] &]]; pos = Position[Partition[Differences[t], 4, 1], {1, 1, 1, 1}, 1, 1]; If[pos != {}, again = False; ans = Prime[t[[pos[[1, 1]] + 4]]], lim = 10*lim]]; ans, {n, 20}] (* T. D. Noe, May 23 2012 *)
CROSSREFS
Sequence in context: A254769 A254722 A236502 * A273184 A252579 A253040
KEYWORD
nonn
AUTHOR
John L. Drost, May 22 2012
STATUS
approved