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”).

A343207
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
6, 12, 15, 18, 20, 28, 35, 36, 40, 54, 56, 63, 70, 75, 77, 78, 88, 91, 99, 100, 102, 104, 108, 114, 117, 130, 138, 143, 153, 154, 162, 170, 174, 175, 176, 182, 184, 186, 187, 189, 190, 196, 200, 208, 209, 221, 222, 238, 245, 246, 247, 258, 261, 266, 272, 282, 286, 297
OFFSET
1,1
COMMENTS
A subsequence of A005279, except for terms such as 184, 261, 568, 826, 848, ..., which partition into distinct parts.
A variant of A343126.
LINKS
EXAMPLE
15 = 3+6+6 with 3+6 = 9 | 18 and 6+6 = 12 | 36.
MATHEMATICA
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])&];
Reap[For[k = 3, k <= 500, k++, sk = sel[k]; If[Length[sk] == 1, Print[k, " ", Sort[sk[[1]]]]; Sow[k]]]][[2, 1]]
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved