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!)
A304356 Primes that are the sum of three consecutive primes == 1 (mod 4). 3
59, 83, 107, 131, 223, 307, 359, 443, 479, 547, 571, 619, 659, 827, 887, 967, 1039, 1187, 1231, 1303, 1367, 1427, 1571, 1619, 1667, 1831, 1871, 1987, 2011, 2087, 2143, 2251, 2287, 2339, 2459, 2503, 2539, 2687, 2927, 3019, 3067, 3259, 3299, 3323, 3463, 3527, 3607, 3631, 3659, 3863, 3919, 4219 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
The first three primes == 1 (mod 4) are 5, 13, 17, but 5+13+17=35 is not prime.
The second, third and fourth primes == 1 (mod 4) are 13, 17, 29, and 13+17+29=59 is prime, so a(1) = 59.
MAPLE
N:= 2000: # to use primes <= N that == 1 (mod 4)
P:= select(isprime, [seq(i, i=1..N, 4)]):
select(isprime, P[1..-3]+P[2..-2]+P[3..-1]);
MATHEMATICA
M = 2000;
P = Select[Range[1, M, 4], PrimeQ];
Select[P[[1;; -3]] + P[[2;; -2]] + P[[3;; -1]], PrimeQ] (* Jean-François Alcover, Apr 24 2019, from Maple *)
Select[Total/@Partition[Select[Prime[Range[250]], Mod[#, 4]==1&], 3, 1], PrimeQ] (* Harvey P. Dale, Aug 20 2022 *)
CROSSREFS
Cf. A002144, A304358. Subset of A002145.
Sequence in context: A322919 A026050 A347804 * A283146 A068209 A139958
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, May 11 2018
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)