OFFSET
0,43
COMMENTS
a(0) = 1 corresponds to the empty partition {}.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..10000
EXAMPLE
a(41) = 1 since it can be expressed as a sum of primes of the form 4k + 1 in only one way: a trivial partition containing just itself.
a(42) = 2 since 42 = 5 + 37 = 13 + 29.
Although 43 = 2 * 13 + 17 = 6 * 5 + 13, none of those consist of distinct primes only. Hence a(43) = 0.
MATHEMATICA
searchMax = 120; primes4kp1 = Select[4Range[Floor[searchMax/4]] + 1, PrimeQ]; Table[Length[Select[IntegerPartitions[n, All, primes4kp1], DuplicateFreeQ]], {n, 0, searchMax}] (* Alonso del Arte, Apr 17 2019 *)
PROG
(PARI) { my(V=select(x->x%4==1, primes(40))); my(x='x+O('x^V[#V])); Vec(prod(k=1, #V, 1+x^V[k])) } \\ Joerg Arndt, Apr 19 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Definition clarified by Felix Fröhlich, Apr 17 2019
a(0) = 1 prepended by Joerg Arndt, Apr 19 2019
STATUS
approved