OFFSET
1,1
COMMENTS
All terms are even and squarefree.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3) = 30 is in the sequence because A000010(30) = 8 and (30+8)/2 = 19 and (30-8)/2 = 11 are prime.
MAPLE
filter:= proc(n) local t; t:= numtheory:-phi(n); isprime((n+t)/2) and isprime((n-t)/2) end proc:
select(filter, [seq(i, i=6..10000, 4)]);
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Aug 12 2020
STATUS
approved