OFFSET
1,1
COMMENTS
Primes of the form A001043(k)/8.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
19 is there because it is prime and 19=(73+79)/8.
MAPLE
p:= 2: R:= NULL: count:= 0:
while count < 100 do
q:= p; p:= nextprime(p);
v:= (q+p)/8;
if v::integer and isprime(v) then
R:= R, v; count:= count+1;
fi;
od:
R; # Robert Israel, Dec 08 2024
MATHEMATICA
Select[Total[#]/8&/@Partition[Prime[Range[2500]], 2, 1], PrimeQ] (* Harvey P. Dale, Apr 22 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Aug 11 2009
EXTENSIONS
Extended by R. J. Mathar, Aug 27 2009
STATUS
approved