How do I write this infinite series using the sigma notation?
$$1+f'(n)m+\frac{f''(n)}{2!}m^2f(n)+\frac{f'''(n)}{3!}m^3(f(n))^2+...$$
My attempt:
$$\sum_{k=0}^\infty\frac{f^{(k)}(n)}{k!}m^k(f(n))^{k-1}$$
But this yields an initial value of $(f(n))^{-1}$ instead of $1$
So we could represent this as:
$$1-(f(n))^{-1}+\sum_{k=0}^\infty\frac{f^{(k)}(n)}{k!}m^k(f(n))^{k-1}$$
Is there a neater way with just a sigma sign followed by a function?