OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (12,-31).
FORMULA
a(n) = ((5+sqrt(5))*(6+sqrt(5))^n + (5-sqrt(5))*(6-sqrt(5))^n)/10.
G.f.: (1-5*x)/(1-12*x+31*x^2).
E.g.f.: (1/5)*exp(6*x)*(5*cosh(sqrt(5)*x) + sqrt(5)*sinh(sqrt(5)*x)). - G. C. Greubel, Dec 18 2016
MATHEMATICA
LinearRecurrence[{12, -31}, {1, 7}, 50] (* G. C. Greubel, Dec 18 2016 *)
PROG
(Magma) [ n le 2 select 6*n-5 else 12*Self(n-1)-31*Self(n-2): n in [1..20] ];
(PARI) Vec((1-5*x)/(1-12*x+31*x^2) + O(x^50)) \\ G. C. Greubel, Dec 18 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Jul 24 2009
STATUS
approved