I am wondering whether partial sums of the geometric series
$$S_n = \sum_{k=0}^n r^k = \frac{1 - r^{n+1}}{1-r},$$
and especially,
$$S'_n = \sum_{k=\color{red}{1}}^n r^k = r \cdot \frac{1 - r^n}{1-r}$$
have any particular result (or meaning, or interpretation) for $r = (1 + \sqrt5)/2$.
Any hint would be nice. This is not a homework topic, but an expression that I encountered while fitting curve models to some data.
Note: an early version of this question had an incorrect expression for $S_n'$, which I have corrected. The current expressions can be validated in MATLAB:
N = 12; % or whatever you use to test
r = (1 + sqrt(5)) / 2;
sum(r.^(0 : N))
(1 - r^(N+1)) / (1 - r)
sum(r.^(1 : N))
r * (1-r^N) / (1 - r)
$$\sum_{k=0}^{n} \phi^{k}=\phi^{n+2}-\phi$$ $$\sum_{k=1}^{n} \phi^{k}=\phi^{n+2}-\phi^2$$ You can prove both of these formulas by induction on $n.$