OFFSET
1,5
COMMENTS
The reciprocal sum of (y_1, ..., y_k) is 1/y_1 + ... + 1/y_k.
LINKS
EXAMPLE
The a(13) = 8 partitions are (63211), (442111), (33322), (3331111), (2222221), (222211111), (22111111111), (1111111111111).
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], And[GCD@@#==1, IntegerQ[Sum[1/m, {m, #}]]]&]], {n, 30}]
PROG
(PARI) a(n)={my(s=0); forpart(p=n, if(gcd(p)==1 && frac(sum(i=1, #p, 1/p[i]))==0, s++)); s} \\ Andrew Howroyd, Aug 26 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 16 2018
EXTENSIONS
a(51)-a(60) from Andrew Howroyd, Aug 26 2018
STATUS
approved