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!)
A050207 Primes of the form p + (smallest prime >= p+1) + (smallest prime >= p+3) where p is a prime. 2
23, 29, 41, 47, 59, 97, 131, 137, 223, 283, 311, 317, 367, 389, 457, 563, 587, 607, 677, 743, 839, 857, 907, 929, 941, 947, 1031, 1049, 1093, 1283, 1303, 1453, 1489, 1847, 1867, 1913, 1931, 1993, 2027, 2347, 2381, 2441, 2477, 2579, 2617, 2657 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Originally an erroneous version of A034962.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
p = 5: 23 = 5 + 7 + 11;
p = 7: 29 = 7 + 11 + 11;
p = 11: 41 = 11 + 13 + 17;
p = 13: 47 = 13 + 17 + 17;
p = 17: 59 = 17 + 19 + 23;
p = 19: 65 = 19 + 23 + 23 is not prime, so not in the sequence;
p = 23: 81 = 23 + 29 + 29 is not prime, so not in the sequence;
p = 29: 97 = 29 + 31 + 37.
MATHEMATICA
Select[Table[p+NextPrime[p]+NextPrime[p+2], {p, Prime[Range[300]]}], PrimeQ] (* Harvey P. Dale, Dec 04 2017 *)
PROG
(PARI) psumpr3(n) = { c1=0; c2=0; forprime(x=3, n, s = nextprime(x)+nextprime(x+1)+nextprime(x+3); c1++; if(isprime(s), c2++; print1(s" ")); ); print(); print(c2/c1+.0) }
CROSSREFS
Cf. A034962.
Sequence in context: A228139 A094383 A166565 * A162658 A303009 A227757
KEYWORD
nonn
AUTHOR
Cino Hilliard, May 08 2003
EXTENSIONS
Edited by Joshua Zucker, Jan 27 2007
Definition clarified by Harvey P. Dale, Dec 04 2017
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 14:23 EDT 2024. Contains 371960 sequences. (Running on oeis4.)