For Fibonacci series we have a recurrence relation $F_n=F_{n-1}+F_{n-2}$.So the initial matrix can be written as $$A=\begin{bmatrix} 1 &1\\ 1 &0 \\ \end{bmatrix}$$ where $a_{11}=F_{n+1}, a_{21}$ and $a_{12}$ are $F_n$ and $a_{22}=F_{n-1}$ We can calculate $n$th Fibonacci by raising this matrix to the power of $n$.
What if the recurrence relation is $F_n=F_{n-1}+4F_{n-2}$ What will the matrix be?
I have a fibonacci recurrence relation as the following: $$F_n= \frac{1}{\sqrt{17}} \bigg(\left(\frac{1+\sqrt{17}}{2}\right)^n - \left(\frac{1-\sqrt{17}}{2}\right)^n\bigg)$$