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

A089528
Primes p of the form 2*prime(k) + 3 such that 2*prime(k+1) + 3 is the next prime after p.
5
13, 37, 89, 277, 389, 397, 449, 457, 701, 761, 929, 2069, 2221, 2609, 2857, 3121, 3217, 3221, 6329, 7229, 7537, 7649, 8581, 8677, 9277, 9941, 11317, 11681, 12401, 13421, 13469, 15649, 16729, 17401, 17497, 17729, 18257, 19289, 19489, 19937, 20509
OFFSET
1,1
LINKS
FORMULA
a(n) = 2*A089527(n) + 3 = 2*A000040(A089526(n)) + 3 = A000040(A089529(n)).
EXAMPLE
p(3)=5, 2*5 + 3 = 13 = p(6);
p(4)=7, 2*7 + 3 = 17 = p(7).
MATHEMATICA
Select[Partition[2#+3&/@Prime[Range[2500]], 2, 1], AllTrue[#, PrimeQ] && NextPrime[ #[[1]]]==#[[2]]&][[All, 1]] (* Harvey P. Dale, Dec 14 2021 *)
PROG
(PARI) forprime(p=2, 10500, my(p23=2*p+3); if(isprime(p23), my(pp=2*nextprime(p+1)+3); if(isprime(pp)&&pp==nextprime(p23+1), print1(p23, ", ")))) \\ Hugo Pfoertner, Aug 04 2021
CROSSREFS
Subsequence of A089531.
Sequence in context: A139697 A124706 A145990 * A317986 A043190 A043970
KEYWORD
nonn
AUTHOR
Ray Chandler, Nov 07 2003
EXTENSIONS
Offset changed to 1 by Jinyuan Wang, Aug 04 2021
STATUS
approved