I was wondering what would be the correct way to explicitly write nested convolutions from the definition of discrete convolution.
Consider a case for the convolution of 4 functions:
$$x_1[n]\ast x_2[n]\ast x_3[n]\ast x_4[n]$$
How would I write the summation form of this convolution?
I know that I should begin from:
$$x_1[n]\ast x_2[n]\ast x_3[n]\ast x_4[n]=\sum_{k=-\infty}^{\infty}x_1[k]\sum_{l=-\infty}^{\infty}x_2[l]\sum_{p=-\infty}^{\infty}x_3[p]x_4[n-p]$$
But I am not sure how I should proceed. I suspect that I should somehow "propagate" the summation variable from the outer to the inner convolutions...
So, what would be the correct and maybe most compact way to write this? I believe that an example for a 4-function convolution should be enough for me to draw a general procedure for $N$ discrete functions functions as well as for the continuous case.
Thank you!!