Given the set $B=\{2^0,2^1, 2^2,...2^{n-1} \}$. Now you pick $n$ elements of $B$ with repetitions and sum the picked elements, e.g.
- picking every element once this sums up to $s_{1,1,...,1}=\sum_{k=0}^{n-1} 2^k= 2^{n}-1$.
- Another example would be picking $n$ times the $k$th element resulting in $s_{0,...n,...,0}=n2^k$.
I want to count the number of occurrences of all possible sums I can construct in this way, by using generating functions but I can't figure out how this works in this case.
Any help appreciated...
Take n=4 as an example. Look at the integer partitions of k in n parts of size at most n, with k= n to n^2. This produces all Binomial(2n-1,n-1) sets of exponents k you mentioned:
1111, 1112, 1113, 1122, 1114, 1123, 1222, 1124, 1133, 1223, 2222, 1134, 1224, 1233, 2223, 1144, 1234, 2224, 1333, 2233, 1244, 1334, 2234, 2333, 1344, 2244, 2334, 3333, 1444, 2344, 3334, 2444, 3344, 3444, 4444
Now, as an 'encoding' step, write '1233' as x1*x2*x3*x3 and sum over all;
you get Sum(all partitions p of n; m(p,n) )
with m(p,n) the monomial symmetric polynomial in n variables.
And that's just the Schur polynomial of single-part-partition {n} in n variables.
You did say '.. any help..'