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

A158350
Primes p such that previousPrime(p) + p -+ 1 are twin primes.
2
7, 11, 17, 23, 31, 71, 101, 127, 233, 307, 311, 409, 419, 443, 617, 647, 661, 719, 743, 811, 839, 863, 941, 1049, 1061, 1361, 1487, 1667, 1697, 1889, 2003, 2053, 2129, 2131, 2243, 2267, 2551, 2647, 2711, 2753, 2767, 2833, 3049, 3109, 3163, 3229, 3299, 3331
OFFSET
1,1
COMMENTS
Sum of two consecutive primes = arithmetic mean of twin primes.
LINKS
EXAMPLE
5+7=12-+1 primes, 7+11=18-+1 primes, 13+17-+1 primes, ...
MAPLE
t1:=[]; for n from 2 to 1000 do p:=ithprime(n); q:=prevprime(p);
if isprime(p+q-1) and isprime(p+q+1) then t1:=[op(t1), p]; fi; od: t1; # N. J. A. Sloane, Dec 24 2012
MATHEMATICA
lst={}; Do[p0=Prime[n]; p1=Prime[n+1]; a=p0+p1; If[PrimeQ[a-1] && PrimeQ[a+1], AppendTo[lst, p1]], {n, 1000}]; lst
CROSSREFS
Cf. A099349.
Sequence in context: A092737 A072669 A108101 * A048203 A370009 A088176
KEYWORD
nonn
AUTHOR
STATUS
approved