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

 


A019928
Expansion of 1/((1-5x)(1-7x)(1-8x)).
2
1, 20, 269, 3040, 31161, 300300, 2775109, 24887960, 218303921, 1882786180, 16026538749, 135010883280, 1127921219881, 9359429537660, 77233958267189, 634411837477000, 5191228487083041, 42342127346986740
OFFSET
0,2
FORMULA
a(n) = 25*5^n/6 -49*7^n/2 +64*8^n/3. - R. J. Mathar, Jun 29 2013
a(0)=1, a(1)=20, a(2)=269; for n>2, a(n) = 20*a(n-1) -131*a(n-2) +280*a(n-3). - Vincenzo Librandi, Jul 03 2013
a(n) = 15*a(n-1) -56*a(n-2) +5^n. - Vincenzo Librandi, Jul 03 2013
MATHEMATICA
CoefficientList[Series[1 / ((1 - 5 x) (1 - 7 x) (1 - 8 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jul 03 2013 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-5*x)*(1-7*x)*(1-8*x)))); /* or */ I:=[1, 20, 269]; [n le 3 select I[n] else 20*Self(n-1)-131*Self(n-2)+280*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jul 03 2013
CROSSREFS
Sequence in context: A278773 A021824 A125455 * A025934 A283517 A180799
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 23 13:10 EDT 2024. Contains 376164 sequences. (Running on oeis4.)