OFFSET
0,3
LINKS
Bruno Berselli, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,28,0,-169).
FORMULA
G.f.: (1+x-14*x^2+13*x^3)/(1-28*x^2+169*x^4).
a(n) = ((1+3*sqrt(3))^n+(1-3*sqrt(3))^n)/(2*2^floor(n/2)).
a(n) = 28*a(n-2)-169*a(n-4).
MATHEMATICA
LinearRecurrence[{0, 28, 0, -169}, {1, 1, 14, 41}, 25]
CoefficientList[Series[(1+x-14x^2+13x^3)/(1-28x^2+169x^4), {x, 0, 30}], x] (* Harvey P. Dale, Nov 08 2017 *)
PROG
(PARI) Vec((1+x-14*x^2+13*x^3)/(1-28*x^2+169*x^4)+O(x^25))
(Magma) I:=[1, 1, 14, 41]; [n le 4 select I[n] else 28*Self(n-2)-169*Self(n-4): n in [1..25]];
(Maxima) makelist(expand(((1+3*sqrt(3))^n+(1-3*sqrt(3))^n)/(2*2^floor(n/2))), n, 0, 24);
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Bruno Berselli, Nov 10 2011
STATUS
approved