The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A240878 Numbers n such that (n^2 + 2)/3 is prime. 2
2, 7, 11, 17, 29, 35, 37, 43, 53, 55, 65, 73, 79, 83, 97, 115, 119, 125, 133, 137, 155, 161, 169, 187, 191, 205, 209, 233, 251, 263, 269, 271, 277, 281, 287, 295, 335, 343, 359, 361, 379, 385, 389, 395, 407, 413, 425, 433, 451, 461, 475, 479, 493, 505, 511, 521, 529, 541, 559, 577 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If n == 1 mod 3, then (n - 1)/3 is in A086285.
LINKS
EXAMPLE
(2^2 + 2)/3 = 6/3 = 2, which is prime, so 2 is in the sequence.
(7^2 + 2)/3 = 51/3 = 17, which is prime, so 7 is in the sequence.
(11^2 + 2)/3 = 123/3 = 41, which is prime, so 11 is in the sequence.
(13^2 + 2)/3 = 171/3 = 57 = 3 * 19, which is not prime, so 13 is not in the sequence.
MAPLE
N:= 10000; # to get all terms <= 3 N + 2
A240878:= select(t -> isprime((t^2+2)/3), {seq(seq(3*i+j, j=1..2), i=0..N)}):
MATHEMATICA
Select[Range[500], PrimeQ[(#^2 + 2)/3] &] (* Alonso del Arte, Apr 13 2014 *)
PROG
(Magma) [2] cat [n: n in [4..600] | IsPrime((n^2 + 2) div 3)]; // Vincenzo Librandi, Jul 01 2014
(PARI) is(n)=isprime((n^2+2)/3) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Cf. A086285.
Sequence in context: A075552 A274504 A124854 * A109953 A165810 A109417
KEYWORD
nonn,easy
AUTHOR
Robert Israel, Apr 13 2014
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 May 16 03:59 EDT 2024. Contains 372549 sequences. (Running on oeis4.)