OFFSET
1,3
COMMENTS
For a strict integer partition p summing to n, a pair (t,p) is defined to be a positive subset sum if there exists a nonempty subset of p summing to t.
EXAMPLE
The a(6)=13 subset sums are:
(6,6),
(1,51), (5,51), (6,51),
(2,42), (4,42), (6,42),
(1,321), (2,321), (3,321), (4,321), (5,321), (6,321).
MATHEMATICA
nn=25; Total/@Table[Function[ptn, Length[Union[Total/@Rest[Subsets[ptn]]]]]/@Select[IntegerPartitions[n], UnsameQ@@#&], {n, nn}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 31 2017
STATUS
approved