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

Numbers k such that k^2 + 10 is prime.
17

%I #15 Mar 16 2017 04:37:46

%S 1,3,7,11,13,27,31,39,49,53,57,59,71,77,81,83,91,97,99,101,123,127,

%T 129,141,151,157,161,169,171,179,181,189,207,209,211,223,227,237,239,

%U 249,253,291,311,319,333,343,363,367,379,393,403,413,423,427,437,447,449

%N Numbers k such that k^2 + 10 is prime.

%H G. C. Greubel, <a href="/A114273/b114273.txt">Table of n, a(n) for n = 1..1500</a>

%t lst={}; Do[If[PrimeQ[n^2+10], AppendTo[lst, n]], {n, 600}]; lst (* _Vladimir Joseph Stephan Orlovsky_, Aug 26 2008 *)

%o (PARI) is(n)=isprime(n^2+10) \\ _Charles R Greathouse IV_, Jan 21 2015

%Y 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), this sequence (i=10), A114274 (i=11), A114275 (i=12).

%K nonn

%O 1,2

%A _Zak Seidov_, Nov 19 2005