A347063 Double Zumkeller numbers: numbers whose set of divisors can be partitioned into two disjoint subsets with equal sums and equal cardinalities.
24, 30, 42, 48, 54, 60, 66, 78, 84, 90, 96, 102, 108, 114, 120, 126, 132, 138, 140, 150, 156, 160, 168, 174, 180, 186, 192, 198, 204, 210, 216, 220, 222, 224, 228, 240, 246, 252, 258, 260, 264, 270, 276, 280, 282, 300, 306, 308, 312, 318, 320, 330, 336, 340, 342
Offset: 1
Keywords
Examples
The set of divisors of 24 is D = {1,2,3,4,6,8,12,24}. D = {1,2,3,24} union {4,6,8,12}, so 24 is in the sequence.
Crossrefs
Subsequence of A083207 (Zumkeller numbers).
Programs
-
Mathematica
Select[Range@300,!IntegerQ@Sqrt@#&&(d=Divisors@#; MemberQ[Total/@Subsets[d,{Length@d/2}],Total@d/2])&] (* Giorgos Kalogeropoulos, Aug 15 2021 *)
Extensions
More terms from Jinyuan Wang, Aug 15 2021
Comments