OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (20,-119,220).
FORMULA
a(n) = 16*4^n/7 - 25*5^n/6 + 121*11^n/42. - R. J. Mathar, Jun 29 2013
From Vincenzo Librandi, Jul 02 2013: (Start)
a(n) = 20*a(n-1) - 119*a(n-2) + 220*a(n-3) for n > 2; a(0)=1, a(1)=20, a(2)=281.
a(n) = 16*a(n-1) - 55*a(n-2) + 4^n. (End)
MATHEMATICA
CoefficientList[Series[1 / ((1 - 4 x) (1 - 5 x) (1 - 11 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jul 02 2013 *)
LinearRecurrence[{20, -119, 220}, {1, 20, 281}, 30] (* Harvey P. Dale, Dec 29 2024 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-4*x)*(1-5*x)*(1-11*x)))); // Vincenzo Librandi, Jul 02 2013
(Magma) I:=[1, 20, 281]; [n le 3 select I[n] else 20*Self(n-1)-119*Self(n-2)+220*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jul 02 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved