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

A114274
Numbers k such that k^2 + 11 is prime.
17
0, 6, 24, 30, 36, 54, 90, 96, 114, 120, 126, 144, 150, 180, 186, 204, 210, 234, 246, 270, 300, 324, 366, 390, 444, 456, 486, 504, 510, 564, 636, 654, 666, 684, 690, 720, 774, 780, 834, 846, 864, 930, 936, 954, 960, 984
OFFSET
1,2
LINKS
MATHEMATICA
lst={}; k=11; Do[If[PrimeQ[n^2+k], (*Print[n]; *)AppendTo[lst, n]], {n, 6!}]; lst (* Vladimir Joseph Stephan Orlovsky, Aug 26 2008 *)
PROG
(PARI) is(n)=isprime(n^2+11) \\ Charles R Greathouse IV, Jan 21 2015
CROSSREFS
Other sequences of the type "Numbers k such that k^2 + i is prime": A005574 (i=1), A067201 (i=2), A049422 (i=3), A007591 (i=4), A078402 (i=5), A114269 (i=6), A114270 (i=7), A114271 (i=8), A114272 (i=9), A114273 (i=10), this sequence (i=11), A114275 (i=12).
Sequence in context: A335736 A228383 A249667 * A335215 A292985 A335197
KEYWORD
nonn
AUTHOR
Zak Seidov, Nov 19 2005
STATUS
approved