OFFSET
1,1
EXAMPLE
6 is a term since there is only one partition of its set of nonunitary divisors, {1, 2, 3, 6}, into two disjoint sets of equal sum: {1, 2, 3} and {6}.
MATHEMATICA
infdivs[n_] := If[n == 1, {1}, Sort @ Flatten @ Outer[Times, Sequence @@ (FactorInteger[n] /. {p_, m_Integer} :> p^Select[Range[0, m], BitOr[m, #] == m &])]]; infZumQ[n_] := Module[{d = infdivs[n], sum, x}, sum = Plus @@ d; If[sum < 2*n || OddQ[sum], False, CoefficientList[Product[1 + x^i, {i, d}], x][[1 + sum/2]] == 2]]; Select[Range[15000], infZumQ] (* after Michael De Vlieger at A077609 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, May 26 2020
STATUS
approved