login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A007591 Numbers k such that k^2 + 4 is prime.
(Formerly M2416)
28
1, 3, 5, 7, 13, 15, 17, 27, 33, 35, 37, 45, 47, 57, 65, 67, 73, 85, 87, 95, 97, 103, 115, 117, 125, 135, 137, 147, 155, 163, 167, 177, 183, 193, 203, 207, 215, 217, 233, 235, 243, 245, 253, 255, 265, 267, 275, 277, 287, 293, 303, 307, 313, 317, 347, 357, 373, 375 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Eric Weisstein's World of Mathematics, Near-Square Prime
MATHEMATICA
lst={}; Do[If[PrimeQ[n^2+4], Print[n]; AppendTo[lst, n]], {n, 10^5}]; lst (* Vladimir Joseph Stephan Orlovsky, Aug 21 2008 *)
Select[Range[0, 400], PrimeQ[#^2 + 4] &] (* Vincenzo Librandi, Sep 25 2012 *)
PROG
(Magma) [n: n in [0..400] | IsPrime(n^2+4)]; // Vincenzo Librandi, Nov 18 2010
(PARI) select(n->isprime(n^2+4), vector(500, n, 2*n-1)) \\ Charles R Greathouse IV, Sep 25 2012
CROSSREFS
Other sequences of the type "Numbers k such that k^2 + i is prime": A005574 (i=1), A067201 (i=2), A049422 (i=3), this sequence (i=4), A078402 (i=5), A114269 (i=6), A114270 (i=7), A114271 (i=8), A114272 (i=9), A114273 (i=10), A114274 (i=11), A114275 (i=12).
Sequence in context: A285130 A024909 A063241 * A097687 A032911 A157834
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 09:49 EDT 2024. Contains 371967 sequences. (Running on oeis4.)