OFFSET
0,2
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,12,0,-25).
FORMULA
a(n) = 12*a(n-2) - 25*a(n-4) for n>3. - Colin Barker, Oct 21 2019
a(2*n)/a(2*n-1) ~ 2*a(2*n+1)/a(2*n) ~ 1 + sqrt(11).
MATHEMATICA
CoefficientList[Series[(1+5x-2x^2-15x^3)/(1-12x^2+25x^4), {x, 0, 30}], x] (* or *) LinearRecurrence[ {0, 12, 0, -25}, {1, 5, 10, 45}, 30] (* Harvey P. Dale, Jul 02 2024 *)
PROG
(PARI) Vec((1 + 5*x - 2*x^2 - 15*x^3) / (1 - 12*x^2 + 25*x^4) + O(x^30)) \\ Colin Barker, Dec 13 2019
CROSSREFS
KEYWORD
nonn,less,easy
AUTHOR
Kyle MacLean Smith, Oct 20 2019
STATUS
approved