OFFSET
1,1
COMMENTS
The corresponding record values are 1, 3, 7, 13, 17, 102, 140, ... (see the link for more values).
LINKS
EXAMPLE
24 is the first term since it is the least nonunitary Zumkeller number, and its nonunitary divisors, {2, 4, 6, 12}, can be partitioned in a single way: 2 + 4 + 6 = 12. The next nonunitary Zumkeller number with more than one partition is 96, whose nonunitary divisors, {2, 4, 6, 8, 12, 16, 24, 48}, can be partitioned in 3 ways: 2 + 4 + 6 + 8 + 16 + 24 = 12 + 48, 2 + 6 + 12 + 16 + 24 = 4 + 8 + 48, and 8 + 12 + 16 + 24 = 2 + 4 + 6 + 48.
MATHEMATICA
nuz[n_] := Module[{d = Select[Divisors[n], GCD[#, n/#] > 1 &], sum, x}, sum = Plus @@ d; If[sum < 1 || OddQ[sum], 0, CoefficientList[Product[1 + x^i, {i, d}], x][[1 + sum/2]]/2]]; nuzm = 0; s = {}; Do[nuz1 = nuz[n]; If[nuz1 > nuzm, nuzm = nuz1; AppendTo[s, n]], {n, 1, 8000}]; s
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, May 25 2020
STATUS
approved