I have an algorithm which for two input parameters $m,n$ has a complexity of:
$$\sum_{i=1}^n m^n$$
this gives me the closed form of geometric series:
$$\frac{m(m^n-1)}{m-1}$$
Is it correct if I write that my algorithm has a complexity of $O(\frac{m(m^n-1)}{m-1})$, or could this be further simplified?
Note that $m \geq 1, n \geq 1$.