OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (21,-140,300).
FORMULA
G.f.: 1/((1-5*x)*(1-6*x)*(1-10*x)).
a(n) = 5*5^n - 9*6^n + 5*10^n. - R. J. Mathar, Jun 29 2013
a(n) = 21*a(n-1) - 140*a(n-2) + 300*a(n-3), with a(0)=1, a(1)=21, a(2)=301. - Vincenzo Librandi, Jul 03 2013
a(n) = 16*a(n-1) - 60*a(n-2) + 5^n. - Vincenzo Librandi, Jul 03 2013
MAPLE
a:= n-> (Matrix(3, (i, j)-> `if`(i=j-1, 1, `if`(j=1, [21, -140, 300][i], 0)))^n)[1, 1]: seq(a(n), n=0..25); # Alois P. Heinz, Jul 03 2013
MATHEMATICA
CoefficientList[Series[1 / ((1 - 5 x) (1 - 6 x) (1 - 10 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jul 03 2013 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-5*x)*(1-6*x)*(1-10*x)))); /* or */ I:=[1, 21, 301]; [n le 3 select I[n] else 21*Self(n-1)-140*Self(n-2)+300*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jul 03 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved