OFFSET
1,1
EXAMPLE
a(1)=25: p(25)=97 and p(26)=101, the first cousin prime pair; p(27)=103 and p(28)=107, the second cousin prime pair; p(29)=109 and p(30)=113, the third cousin prime pair; p(31)=127 and p(32)=131, the fourth cousin prime pair.
MAPLE
P:= select(isprime, [2, seq(i, i=3..10^7, 2)]):
G:= P[2..-1]-P[1..-2]:
select(t -> G[t] =4 and G[t+2] = 4 and G[t+4] = 4 and G[t+6] = 4, [$1..nops(G)-6]); # Robert Israel, May 15 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Ray G. Opao, Jul 15 2004
EXTENSIONS
More terms from Robert Israel, May 15 2025
STATUS
approved
