OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Bhabesh Das, On unitary Zumkeller numbers, Notes on Number Theory and Discrete Mathematics, Vol. 30, No. 2 (2024), pp. 436-442.
Eric Weisstein's World of Mathematics, Unitary Divisor Function.
Wikipedia, Unitary divisor.
EXAMPLE
The set of unitary divisors of 30 is {1,2,3,5,6,10,15,30}. It can be partitioned into two disjoint subsets with equal sums of elements: {5,6,10,15} and {1,2,3,30}, therefore 30 is in the sequence.
MATHEMATICA
uDiv[n_]:=Block[{d=Divisors[n]}, Select[d, GCD[#, n/#]==1&]]; uZNQ[n_]:=Module[{d=uDiv[n], t, ds, x}, ds=Plus@@d; If[Mod[ds, 2]>0, False, t=CoefficientList[Product[1+x^i, {i, d}], x]; t[[1+ds/2]]>0]]; Select[Range[10^3], uZNQ] (* combined from the code by Robert G. Wilson v at A034448 and T. D. Noe at A083207 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Ivan N. Ianakiev, Aug 03 2017
STATUS
approved