Let N be a positive integer.
We want a set of positive integers M, |M| = N, such that any subset sums to a unique number.
In general there may be a lot of numbers. Setting each number to 1, and we couldn't distinguish which 1's added up to, say, 3. If M is powers of 2, then that may work (for N=3):
M = {1,2,4}
1
2
4
1+2=3
4+1=5
4+2=6
4+1+2=7
The problem is now the numbers use more bits. Can we do it in less bits?
You can always build one incrementally like below:
Then $S_N$ satisfies your request.
Note that in case of base-$2$ numbers, you start with $1$, select $2>1$ then $4>1+2$ then $8>1+2+4$, and so on... At each step you have selected the minimal number available, so base-$2$ numbers will give the minimal $\max(S_N)$ for a given $N$.