OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (19,-114,216).
FORMULA
a(n) = 8*4^n/5 -6*6^n +27*9^n/5. - R. J. Mathar, Jun 29 2013
a(0)=1, a(1)=19, a(2)=247; for n>2, a(n) = 19*a(n-1) -114*a(n-2) +216*a(n-3). - Vincenzo Librandi, Jul 03 2013
a(n) = 15*a(n-1) -54*a(n-2) +4^n. - Vincenzo Librandi, Jul 03 2013
MATHEMATICA
CoefficientList[Series[1 / ((1 - 4 x) (1 - 6 x) (1 - 9 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jul 03 2013 *)
LinearRecurrence[{19, -114, 216}, {1, 19, 247}, 30] (* Harvey P. Dale, Oct 04 2019 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-4*x)*(1-6*x)*(1-9*x)))); // Vincenzo Librandi, Jul 03 2013
(Magma) I:=[1, 19, 247]; [n le 3 select I[n] else 19*Self(n-1)-114*Self(n-2)+216*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jul 03 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved