login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A129512 A259366 A196391 * A362011 A116359 A141698
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 20 00:58 EDT 2024. Contains 371798 sequences. (Running on oeis4.)