login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Numbers k such that there exists a unique partition of k into positive integers x,y,z such that x+y, y+z and x+z divide x*y, y*z and x*z, respectively.
1

%I #20 Apr 09 2021 11:35:10

%S 6,12,15,18,20,28,35,36,40,54,56,63,70,75,77,78,88,91,99,100,102,104,

%T 108,114,117,130,138,143,153,154,162,170,174,175,176,182,184,186,187,

%U 189,190,196,200,208,209,221,222,238,245,246,247,258,261,266,272,282,286,297

%N Numbers k such that there exists a unique partition of k into positive integers x,y,z such that x+y, y+z and x+z divide x*y, y*z and x*z, respectively.

%C A subsequence of A005279, except for terms such as 184, 261, 568, 826, 848, ..., which partition into distinct parts.

%C A variant of A343126.

%H Alois P. Heinz, <a href="/A343207/b343207.txt">Table of n, a(n) for n = 1..1000</a>

%e 15 = 3+6+6 with 3+6 = 9 | 18 and 6+6 = 12 | 36.

%t sel[k_] := Select[IntegerPartitions[k, {3}], ({x, y, z} = Sort[#]; Divisible[x y, x+y] && Divisible[y z, y+z] && Divisible[x z, x+z])&];

%t Reap[For[k = 3, k <= 500, k++, sk = sel[k]; If[Length[sk] == 1, Print[k, " ", Sort[sk[[1]]]]; Sow[k]]]][[2, 1]]

%Y Cf. A005279, A010814, A343126.

%K nonn

%O 1,1

%A _Jean-François Alcover_, Apr 08 2021