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,-202,528).
FORMULA
a(n) = 18*6^n/5 -32*8^n/3 +121*11^n/15. - R. J. Mathar, Jun 30 2013
a(0)=1, a(1)=25, a(2)=423; for n>2, a(n) = 25*a(n-1) -202*a(n-2) +528*a(n-3). - Vincenzo Librandi, Jul 04 2013
a(n) = 19*a(n-1) -88*a(n-2) +6^n. - Vincenzo Librandi, Jul 04 2013
MATHEMATICA
CoefficientList[Series[1 / ((1 - 6 x) (1 - 8 x) (1 - 11 x)), {x, 0, 20}], x] (* Vincenzo Librandi Jul 04 2013 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-6*x)*(1-8*x)*(1-11*x)))); /* or */ I:=[1, 25, 423]; [n le 3 select I[n] else 25*Self(n-1) -202*Self(n-2)+528*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jul 04 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved