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”).

A016317
Expansion of 1/((1-2x)(1-8x)(1-10x)).
1
1, 20, 284, 3520, 40656, 450240, 4851904, 51315200, 535521536, 5534172160, 56773377024, 579187015680, 5883496124416, 59567968993280, 601543751942144, 6062350015528960, 60998800124215296, 612990400993689600
OFFSET
0,2
FORMULA
From Vincenzo Librandi, Oct 09 2011: (Start)
a(n) = (75*10^n + 2^n - 8^(n+2))/12.
a(n) = 18*a(n-1) - 80*a(n-2) + 2^n.
a(n) = 20*a(n-1) - 116*a(n-2) + 160*a(n-3), n >= 3. (End)
MATHEMATICA
CoefficientList[Series[1/((1 - 2 x) (1 - 8 x) (1 - 10 x)), {x, 0, 17}], x] (* Michael De Vlieger, Jan 31 2018 *)
LinearRecurrence[{20, -116, 160}, {1, 20, 284}, 20] (* Harvey P. Dale, Mar 20 2020 *)
PROG
(Sage) [((10^n - 2^n)/8-(8^n - 2^n)/6)/2 for n in range(2, 20)] # Zerinvary Lajos, Jun 05 2009
(Magma) [((75*10^n + 2^n -8^(n+2))/12) : n in [0..20]]; // Vincenzo Librandi, Oct 09 2011
(PARI) Vec(1/((1-2*x)*(1-8*x)*(1-10*x))+O(x^99)) \\ Charles R Greathouse IV, Sep 26 2012
CROSSREFS
Sequence in context: A019040 A021204 A017953 * A021404 A046175 A231105
KEYWORD
nonn,easy
STATUS
approved