Normally, when I multiply the two following series:
$$\sum_{n\ge0}a_nx^n$$
$$\sum_{n\ge0}b_nx^n$$
I have:
$$\sum_{n\ge0}(\sum_{i=0}^na_ib_{n-i})x^n$$
Which is nice and intuitive. However, what if the exponents of x, or the indices don't match up? For example, what if I wanted to multiply these two:
$$\sum_{n\ge0}a_nx^{100n}$$
$$\sum_{n\ge0}b_nx^n$$
If I were to try to do this I'd reindex the second series to:
$$\sum_{\frac{n}{100}\ge0}b_nx^{100n}$$
But then the indices wouldn't line up. Am I missing something?
We can nicely see the similarities when adding an intermediate step.
On the one hand we have \begin{align*} \sum_{k=0}^\infty a_kx^k\sum_{l=0}^\infty b_lx^l &=\sum_{n=0}^\infty\left(\sum_{\color{blue}{{k+l=n}\atop{k,l\geq 0}}}a_kb_l\right)x^n =\sum_{n=0}^\infty \sum_{\color{blue}{k=0}}^{\color{blue}{n}} a_kb_{n-k} x^n\\ \end{align*}
On the other hand we have \begin{align*} \sum_{k=0}^\infty a_kx^{100k}\sum_{l=0}^\infty b_lx^l &=\sum_{n=0}^\infty\left(\sum_{\color{blue}{{100k+l=n}\atop{k,l\geq 0}}}a_kb_l\right)x^n =\sum_{n=0}^\infty \sum_{\color{blue}{k=0}}^{\color{blue}{\left\lfloor\frac{n}{100}\right\rfloor}}a_kb_{n-100k} x^n\\ \end{align*}
Comment:
In the middle sums we have rearranged the terms according to increasing powers of $x^n$. Consequently the conditions are $k+l=n$ resp. $100k+l=n$ besides $k,l\geq 0$.
In the right-hand sums we eliminate $l$ by substituting $l=n-k$ resp. $l=n-100k$. Consequently is the upper limit of the inner sum $n$ resp. $\left\lfloor\frac{n}{100}\right\rfloor$.