I have the simple example of finding the Laurent series of:
$f(z)=\frac{1}{z-2}$
on $|z|\leq2$ and $|z|\geq2$
Procedure to find it is rather straight forward, develop it as a Power series (in the form $\sum_0^\infty a_nz^n$ when $|z|\leq 2$:
\begin{equation} \frac{1}{z-2}=-\frac{1}{2-z}=-\frac{1}{2}\frac{1}{1-\frac{z}{2}}=\sum_{n=0}^\infty(-1)^n\frac{z^n}{2^{n+1}} \end{equation}
Then for the case of $|z|\geq2$, we develop it as a Laurent series, and we seek the form $\sum_{n=-\infty}^\infty\frac{b_n}{z^n}$:
\begin{equation} \frac{1}{z-2}=\frac{1}{z}\frac{1}{1-\frac{2}{z}}=\sum_{n=-\infty}^\infty\frac{2^{n-1}}{z^n} \end{equation}
But then it turns out the lower bounds is not supposed to be $n=-\infty$, but $n=1$. I can understand that the Power series has a lower bound of 0, but the Laurent series has a lower bound of $-\infty$ in the formula, so why is it not this, but $n=1$?
Thanks