When given a recurrence relation defined by the roots of a quadratic equation \( ax^2+bx+c=0 \), you can find a linear recurrence relation for \( A_n = \alpha^n + \beta^n \). Multiply the quadratic by \( x^{n-2} \) to get \( ax^n + bx^{n-1} + cx^{n-2} = 0 \). Since both roots satisfy this, so does their sum, giving the recurrence \( aA_n + bA_{n-1} + cA_{n-2} = 0 \). Here, \( x^2-x-1=0 \) gives \( A_{n} - A_{n-1} - A_{n-2} = 0 \), or \( A_n = A_{n-1}+A_{n-2} \).