It's is well known that the ratio of side-by-side fibonacci numbers converge to $\phi$. But it seems by my calculations, that if one starts with any pair of numbers one will also get a ratio that converges to $\phi$. Say for example if one starts with $3$ and $4$ we get:
4 1,333333333
7 1,75
11 1,571428571
18 1,636363636
29 1,611111111
47 1,620689655
76 1,617021277
123 1,618421053
199 1,617886179
322 1,618090452
521 1,618012422
843 1,618042226
where the series is on the left and the ratio is side-by-side numbers are on the right.
I'm quite curious to know why this happens. Anyone?
The sequences that satisfy the linear recurrence
$$G_{n+2} = G_{n+1} + G_n$$
take the general form
$$ A \alpha^n + B \beta^n$$
where $\alpha, \beta$ are roots of
$$x^2 = x + 1 $$
If $A \ne 0$ (and $\alpha$ is the larger root), the ratio of two consecutive such terms $G_{n+1}/G_n$, converges to the larger root, which in this case is the golden ratio: $\varphi$.
$$ G_{n+1}/G_n = \frac{A \alpha^{n+1} + B \beta^{n+1}}{A \alpha^n + B \beta^n}$$
Take the larger root out ($\alpha$)
$$ = \alpha\left(\frac{A + B (\beta/\alpha)^{n+1}}{A + B (\beta/\alpha)^n}\right) \to \alpha$$
If $A = 0$ and $B \ne 0$, then it converges to $\beta$.