While trying to find find a formula to calculate the length of the golden spiral I came across the sum of the Fibonacci numbers. I noticed that $$\text{Fibonacci numbers: }1,1,2,3,5,8,13,21,34...$$ $$1+1+2= 5-1$$ $$1+1+2+3= 8-1$$ and that $$2+3+5+= 13-2$$ $$3+5+8=21-5$$ so generalized that writing: $$\sum^n_{i=k} F_i=F_{n+2}-F_{k+1}$$ where $F_n$ is the nth Fibonacci number. But the sentence "I noticed that" is not a sufficient demonstration; I tried a lot but I couldn't find a correct demonstration.
How can I find it?