OFFSET
1,6
LINKS
J. Stauduhar, Table of n, a(n) for n = 1..10000
EXAMPLE
For n = 3, 2n=6. In the set {{5, 1}, {4, 2}, {3, 3}}, {4, 2} is the only partition that satisfies the requirements, so a(3) = 1.
For n = 10, 2n=20 and we have partitions {18, 2}, {15, 5}, and {11, 9}, so a(10) = 3.
PROG
(PARI) a(n)=my(s); n*=2; forprime(p=2, n-4, s+=!isprime(n-p)); s \\ Charles R Greathouse IV, Apr 30 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
J. Stauduhar, Apr 20 2013
STATUS
approved