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!)
A020977 Expansion of 1/((1-8*x)*(1-9*x)*(1-11*x)). 1
1, 28, 525, 8240, 116921, 1555428, 19795525, 244020280, 2937425841, 34724726828, 404763120125, 4666104381120, 53319258206761, 604990586218228, 6825603208406325, 76653180504610760, 857610367436699681, 9565794278591213628, 106430473594100486125 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (11^(n+2) - 3*9^(n+2) + 2*8^(n+2))/6. - Yahia Kahloune, Jun 30 2013
a(0)=1, a(1)=28, a(2)=525; for n>2, a(n) = 28*a(n-1) -259*a(n-2) +792*a(n-3). - Vincenzo Librandi, Jul 05 2013
a(n) = 20*a(n-1) -99*a(n-2) + 8^n. - Vincenzo Librandi, Jul 05 2013
MATHEMATICA
CoefficientList[Series[1 / ((1 - 8 x) (1 - 9 x) (1 - 11 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jul 05 2013 *)
LinearRecurrence[{28, -259, 792}, {1, 28, 525}, 20] (* Harvey P. Dale, Mar 30 2018 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-8*x)*(1-9*x)*(1-11*x)))); /* or */ I:=[1, 28, 525]; [n le 3 select I[n] else 28*Self(n-1)-259*Self(n-2)+792*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jul 05 2013
(PARI) x='x+O('x^30); Vec(1/((1-8*x)*(1-9*x)*(1-11*x))) \\ G. C. Greubel, Feb 09 2018
CROSSREFS
Sequence in context: A024440 A024347 A025984 * A020973 A023947 A020972
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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)