I just found the sum of all Fibonacci numbers and I don't know if its right or not.
The Fibonacci sequence goes like this : $1,1,2,3,5,8,13,\dots$ and so on
So the Fibonacci series is this $1+1+2+3+5+8+13+\dots$
Let $1+1+2+3+5+8+\dots=x$
$$\begin{align} 1 + 1 + 2 + 3 + 5 + \dots &= x\\ 1 + 1 + 2 + 3 + \dots &= x\\ 1 + 2 + 3 + 5 + 8 + \dots &= 2x \text{ (shifting and adding)} \end{align}$$
We in fact get the same sequence. But the new sequence is one less than the original sequence. So the new sequence is $x-1$. But $x-1=2x$ which implies that $x=-1$.
So $1+1+2+3+5+8+\dots=x$ which means... $1+1+2+3+5+8+13+21+\dots=-1$
Is this right or wrong? Can someone please tell? Thanks...