For example: 1,2,4,5 has the following sum:
1,2,4,5
3,6,9
7,11
12
and every sum is unique.
Now, 1,2,3 has the following sum:
1,2,3
3,5
6
and apparently not every sum is unique.
Is there any efficient way to generate similar sequence to the first example with the goal of picking every number as small as possible (not just 1,2,4,8,16...)? I understand I could write a program to perhaps bruteforce this, but I'm just curious can it be done in a better way.