OFFSET
0,2
COMMENTS
Up to a(14) also indices of records in A002375, number of ways to write 2n as sum of two odd primes. - M. F. Hasler, Aug 21 2017
LINKS
Robert Israel, Table of n, a(n) for n = 0..845
MAPLE
g:= add(x^ithprime(i), i=2..1000):
G:= series((g^2+add(x^(2*ithprime(i)), i=2..1000))/2, x, ithprime(1001)+3):
A[0]:= 0:
for k from 1 to (ithprime(1001)+1)/2 do
m:= coeff(G, x, 2*k);
if not assigned(A[m]) then A[m]:= k fi;
od:
for m from 1 while assigned(A[m]) do od:
seq(A[i], i=0..m-1); # Robert Israel, Aug 21 2017
MATHEMATICA
With[{s = Array[Count[Select[IntegerPartitions[2 #, 2], Length@ # == 2 &], p_ /; AllTrue[p, And[PrimeQ@ #, OddQ@ #] &]] &, 10^3]}, Table[FirstPosition[s, n][[1]] /. 1 -> 0, {n, 0, 53}]] (* Michael De Vlieger, Aug 21 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 14 2015
EXTENSIONS
Edited by M. F. Hasler, Aug 21 2017
Edited by Robert Israel, Aug 21 2017
STATUS
approved