In how many ways can I sum elements $a,b,c,d,...$ such that they add up to $n$?
For example, $1,2,3$ can be summed to $4$ in $4$ ways because:
$$4 = 1+1+1+1 = 2+2 = 1+3 = 2+1+1$$
If two ways use the same values but in other order (e.g. $1+2+1$) they will be counted as the same one.