OFFSET
1,1
COMMENTS
Primes of the form Sum_{i=1..n} prime(i) * prime(n+1-i).
LINKS
Robert Israel, Table of n, a(n) for n = 1..1500
EXAMPLE
For n=3, a(3) = 230849 = A014342(47) is prime.
MAPLE
G:= expand(add(ithprime(i)*x^i, i=1..2000)^2):
select(isprime, [seq(coeff(G, x, i), i=2..2001)]);
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Apr 15 2021
STATUS
approved