login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A020979 Expansion of 1/((1-8*x)*(1-10*x)*(1-11*x)). 1
1, 29, 563, 9145, 134211, 1845249, 24249163, 308352185, 3824765171, 46535545969, 557596038363, 6599196683625, 77316285612931, 898280118486689, 10363489117309163, 118857642802045465, 1356308170915657491 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0)=1, a(1)=29, a(2)=563; for n>2, a(n) = 29*a(n-1)-278*a(n-2) + 880*a(n-3). - Harvey P. Dale, Dec 19 2012
a(n) = (2*11^(n+2) - 3*10^(n+2) + 8^(n+2))/6. - Yahia Kahloune, Jun 30 2013
a(0)=1, a(1)=29; for n>1, a(n) = 21*a(n-1) -110*a(n-2) +8^(n-1). - Vincenzo Librandi, Jul 08 2013
MATHEMATICA
CoefficientList[Series[1 / ((1 - 8 x) (1 - 10 x) (1 - 11 x)), {x, 0, 30}], x] (* or *) LinearRecurrence[{29, -278, 880}, {1, 29, 563}, 30] (* Harvey P. Dale, Dec 19 2012 *)
PROG
(Magma) I:=[1, 29, 563]; [n le 3 select I[n] else 29*Self(n-1)-278*Self(n-2)+880*Self(n-3): n in [1..20]]; /* or */ m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-8*x)*(1-10*x)*(1-11*x)))); // Vincenzo Librandi, Jul 08 2013
(PARI) x='x+O('x^30); Vec(1/((1-8*x)*(1-10*x)*(1-11*x))) \\ G. C. Greubel, Feb 09 2018
CROSSREFS
Sequence in context: A026241 A024443 A024435 * A025985 A020978 A023948
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)