OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (23,-159,297).
FORMULA
a(0)=1, a(1)=23, a(2)=370; for n>2, a(n) = 23*a(n-1) -159*a(n-2) +297*a(n-3). - Vincenzo Librandi, Jul 02 2013
a(n) = 20*a(n-1) -99*a(n-2) +3^n. - Vincenzo Librandi, Jul 02 2013
a(n) = (3*11^(n+2) - 4*9^(n+2) + 3^(n+2))/48. [Yahia Kahloune, Jul 06 2013]
MATHEMATICA
CoefficientList[Series[1 / ((1 - 3 x) (1 - 9 x) (1 - 11 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jul 02 2013 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-3*x)*(1-9*x)*(1-11*x)))); /* or */ I:=[1, 23, 370]; [n le 3 select I[n] else 23*Self(n-1)-159*Self(n-2)+297*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jul 02 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved