I am not familiar with alternative expression of sum shown below,
$ d_k=\sum_{i+j+l=k}a_ib_jc_l $
How it does work?
for $k = 4 $ then,
$d_{4} = \sum_{i+j+l=4}a_ib_jc_l = ...$
How do I express it in standard summation format namely $\sum_{n=0}^{\infty}$ This is from the formula to calculate the product of three summations (power series) or $\sum_{i=0}^{\infty} a_i x^i \cdot \sum_{j=0}^{\infty} b_j x^j \cdot \sum_{l=0}^{\infty} c_l x^l = \sum_{k=0}^{\infty} d_kx^k$
First, it is assumed that the indices are non-negative.
Second step, it means that the sum is to be taken for the triples $(i,j,l)$ for which $i+j+l=k |0 \le i,j,l$. These are the "weak" compositions of $k$ into three parts
So for e.g. $k=4$ you have to sum $a_0b_0c_4+\cdots+a_0b_1c_3+\cdots$