OFFSET
1,1
COMMENTS
Equivalently, primes p such that there exists k such that p = prime(k) + prime(k+2) + prime(k+4) + prime(k+6) + prime(k+8) + prime(k+10) + prime(k+12) + prime(k+14) + prime(k+16).
LINKS
Muniru A Asiru, Table of n, a(n) for n = 1..5000
EXAMPLE
521 = 23 + 31 + 41 + 47 + 59 + 67 + 73 + 83 + 97 is a prime and 23, 31, 41, 47, 59, 67, 73, 83, 97 are alternate primes.
563 = 29 + 37 + 43 + 53 + 61 + 71 + 79 + 89 + 101 is a prime and 29, 37, 43, 53, 61, 71, 79, 89, 101 are alternate primes.
MAPLE
select(isprime, [seq(sum(ithprime(2*i+k), i=0..8), k=1..200)]);
PROG
(GAP) P:=Filtered([1..10000], IsPrime);;
Filtered(List([1..200], k->Sum([0..8], i->P[2*i+k])), IsPrime);
CROSSREFS
KEYWORD
nonn
AUTHOR
Muniru A Asiru, Mar 05 2018
STATUS
approved