login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A017065
Expansion of 1/((1-3x)(1-4x)(1-11x)).
1
1, 18, 235, 2760, 31141, 345918, 3819295, 42071220, 463025881, 5094274218, 56041033555, 616467614880, 6781209278221, 74593565712918, 820530282235015, 9025837356505740, 99284227972292161, 1092126576027270018
OFFSET
0,2
FORMULA
a(n) = 9*3^n/8 - 16*4^n/7 + 121*11^n/56. - R. J. Mathar, Jun 23 2013
From Vincenzo Librandi, Jun 26 2013: (Start)
a(n) = 18*a(n-1) - 89*a(n-2) + 132*a(n-3).
a(n) = 15*a(n-1) - 44*a(n-2) + 3^n. (End)
MATHEMATICA
CoefficientList[Series[1 / ((1 - 3 x) (1 - 4 x) (1 - 11 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jun 26 2013 *)
LinearRecurrence[{18, -89, 132}, {1, 18, 235}, 20] (* Harvey P. Dale, Jul 28 2023 *)
PROG
(Magma) I:=[1, 18, 235]; [n le 3 select I[n] else 18*Self(n-1)-89*Self(n-2)+132*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jun 26 2013
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-3*x)*(1-4*x)*(1-11*x)))); // Vincenzo Librandi, Jun 26 2013
(PARI) x='x+O('x^20); Vec(1/((1-3*x)*(1-4*x)*(1-11*x))) \\ Altug Alkan, Sep 23 2018
CROSSREFS
Sequence in context: A275963 A125453 A016256 * A016252 A016301 A058126
KEYWORD
nonn,easy,changed
STATUS
approved