OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..900
Index entries for linear recurrences with constant coefficients, signature (27,-224,528).
FORMULA
From Vincenzo Librandi, Oct 09 2011: (Start)
a(n) = (7*12^(n+2)+4^(n+2)-8*11^(n+2))/56.
a(n) = 23*a(n-1) - 132*a(n-2) + 4^n.
a(n) = 27*a(n-1) - 224*a(n-2) + 528*a(n-3), n>=3. (End)
MATHEMATICA
CoefficientList[Series[1/((1-4x)(1-11x)(1-12x)), {x, 0, 30}], x] (* or *) LinearRecurrence[{27, -224, 528}, {1, 27, 505}, 30] (* Harvey P. Dale, Jul 16 2017 *)
PROG
(Magma) [(7*12^(n+2)+4^(n+2)-8*11^(n+2))/56 : n in [0..20]]; // Vincenzo Librandi, Oct 09 2011
(PARI) Vec(1/((1-4*x)*(1-11*x)*(1-12*x)) + O(x^30)) \\ Michel Marcus, Dec 27 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Michel Marcus, Dec 27 2014
STATUS
approved