For a fixed integers $j$ and $k$ with $1\leq j<k\leq n-1$, I am trying to find the coefficient of $x_{n+j}\cdot x_{n+k}$ in the following product - \begin{equation} { \prod_{l=2}^n\left(1+\sum_{i=1}^{l-1}c_{il}\cdot x_{n+i}\right) =(1+c_{12}\cdot x_{n+1})\ (1+c_{13}\cdot x_{n+1}+c_{23}\cdot x_{n+2})\cdots\\ \qquad\qquad\cdots\left(1+\sum_{i=1}^{l-1}c_{il}\cdot x_{n+i}\right)\cdots\left(1+\sum_{i=1}^{n-1}c_{in}\cdot x_{n+i}\right) \tag{1} } \end{equation}
Here $c_{ij}$ are integers.
I tried it for $n=3,\ 4,\ 5$ and $6$ and observed a pattern in the coefficients and came up with the formula - $$\sum_{l=1}^{n-k}\left[c_{k,k+l}\left(\sum_{\substack{i=j+1\\ i\neq k+l}}^n c_{j,i}\right)\right] \tag{2} $$
Now I would like to prove it rigorously by induction(??) on $n$. Unfortunately, I have no idea how to proceed with the induction step.
I assume that for the product (1), the coefficient of $x_{n+j}\cdot x_{n+k}$ is (2).
Now I need to to find the coeffecient of $x_{n+1+j}\cdot x_{n+1+k}$ in the product $$\prod_{l=2}^{n+1}\left(1+\sum_{i=1}^{l-1}c_{il}\cdot x_{n+1+i}\right)$$ This is what confuses me. I can't simply write the new product in terms of the old one. So how would I proceed?
Thank you.