Let $F_n$ be the Fibonacci number, and we know
$F_{n+2} = F_{n+1} + F_{n} $ with $F_0 =1,F_1 = 1$
And this can be manipulated to
$F_{n+6} = 4F_{n+3} + F_n$
if we let n be a multiple of 3, we can write $A_r = F_{3r}$, and we get
$A_{r+2} = 4A_{r+1} + A_r$ with $A_0=1, A_1=1$
So I am wondering, can we prove the relation:
$F_{r(k+2)} = AF_{r(k+1)} + BF_{rk}$, $k \in N$
exist for every $r \geq 1$ ? And is the pair of $(A,B)$ unique for every value of $r$?
Recall the theory of recurrence relations: The characteristic equation of the fibonacci sequence is $X^2 - X - 1 = 0 $.
This tells us that $F_n = a \alpha^n + b \beta ^n $ (for some constants $a$ and $b$), where $ \alpha + \beta = -1 $ and $ \alpha \beta = -1$.
Setting $A_n = F_{rn}$, we get that $$A_n = a(\alpha^r)^n + b (\beta^r)^n.$$
Hence, $A_n$ must satisfy the recurrence relation
$$ A_n = A A_{n-1} + B A_{n-2},$$
which has the characteristic equation $X^2 - AX - B = 0$, which gives us $A= \alpha^r + \beta^r $ and $ -B= \alpha^r \beta^r = (-1)^r $.
Note: $A$ can be determined using Newton's polynomials. As Nate remarks, $ A = \alpha^r + \beta^r = F_{r} + F_{r-2}$.