\begin{vmatrix} 3 & 2 & 0 & 0 & . &. & . & . &0 &0 \\ 1 & 3 & 2 & 0 & . &. & . & . &0 &0 \\ 0 & 1 & 3 & 2 & . &. & . & . &0 &0 \\ 0 & 0 & 1 & 3 & . &. & . & . &0 &0 \\ . & . & . & . & . &. & . & . &. &. \\ 0 & 0 & 0 & 0 & . &. & . & . &1 &3 \end{vmatrix}
Given this determinant, how do I find its value?
we will derive a three term recurrence relations for the determinant $a_n$ of the matrix of size $n.$ expanding by the first row, we get $$a_n = 3a_{n-1} - 2a_{n-2}, a_0 = 1, a_1 = 3, a_2 = 7, a_3= 15, \cdots$$
the characteristic equation is $$\lambda^2 - 3\lambda + 2= 0\to \lambda = 1, 2$$ therefore $$ a_n = C \, 2^n + D, C + D = 1, 2C + D = 3$$ gives $C = 2, D = -1.$ that is $$a_n = 2^{n+1} - 1. $$