I am studying a recursive series which looks like this:
$n+\frac{n}{g} + \frac{(n+\frac{n}{g})}{g} + \frac{(n+\frac{n}{g} + \frac{(n+\frac{n}{g})}{g})}{g} + ...$
It is made of the terms in-between the + signs.
The series is recursive because every $n$ in the next term beyond $\frac{n}{g}$ is replaced by $n+\frac{n}{g}$. Since I want to sum these terms up to a certain index, I would need some way of writing them as a summation/sigma. How might I do this?
Apart from the first term that doesn't fit the pattern, you seem to be taking $\sum_{k=1}^M T_k(n)$ where $T_{j+1}(n) = T_j(n + n/g)$. Thus $$ \eqalign{T_1(n) &= \dfrac{n}{g}\cr T_2(n) &= \dfrac{n+n/g}{g} = n \dfrac{g+1}{g^2}\cr T_3(n) &= (n + n/g) \dfrac{g+1}{g^2} = n \dfrac{(g+1)^2}{g^3}\cr T_4(n) &= (n+n/g) \dfrac{(g+1)^2}{g^3} = n \dfrac{(g+1)^3}{g^4}\cr}$$ and in general $$ T_k(n) = n \dfrac{(g+1)^{k-1}}{g^k}$$ Then $$ \sum_{k=1}^M T_k(n) = \dfrac{n (g+1)^M}{g^M} - n $$