OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (25,-194,440).
FORMULA
a(n) = 2*4^(n+1)/21 +11^(n+2)/7-5*10^(n+1)/3. - R. J. Mathar, Nov 11 2012
a(0)=1, a(1)=25, a(2)=431; for n>2, a(n) = 25*a(n-1) -194*a(n-2) +440*a(n-3). - Vincenzo Librandi, Jul 03 2013
a(n) = 21*a(n-1) -110*a(n-2) +4^n. - Vincenzo Librandi, Jul 03 2013
MATHEMATICA
CoefficientList[Series[1 / ((1 - 4 x) (1 - 10 x) (1 - 11 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jul 03 2013 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-4*x)*(1-10*x)*(1-11*x)))); /* or */ I:=[1, 25, 431]; [n le 3 select I[n] else 25*Self(n-1)-194*Self(n-2)+440*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jul 03 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved