OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..2000
EXAMPLE
p(44) = 193, 2*193 + 3 = 389 = p(77);
p(45) = 197, 2*197 + 3 = 397 = p(78);
p(46) = 199, 2*199 + 3 = 401 = p(79).
MAPLE
r:= 1: q:= 2: p:= 3: count:= 0:
while count < 100 do
r:= q; q:= p; p:= nextprime(p);
if isprime(2*r+3) and nextprime(2*r+3)=2*q+3 and nextprime(2*q+3)=2*p+3 then
count:= count+1;
A[count]:= r;
fi
od:seq(A[i], i=1..100); # Robert Israel, Jul 01 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Pierre CAMI, Nov 02 2003
EXTENSIONS
More terms from Ray Chandler, Nov 03 2003
Offset corrected by Robert Israel, Jul 01 2018
STATUS
approved