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

A028075
Expansion of 1/((1-3x)(1-6x)(1-7x)(1-9x)).
0
1, 25, 400, 5230, 60991, 661675, 6836950, 68263360, 664838581, 6356961325, 59947423900, 559395635890, 5177995501771, 47632122760975, 436056971109250, 3977028159426820, 36166503547714561, 328145135909292625, 2972035570568581000, 26880644285129620150, 242859379929646660951
OFFSET
0,2
FORMULA
a(n) = (2*9^(n+3) - 9*7^(n+3) + 8*6^(n+3) - 3^(n+3))/72. [Yahia Kahloune, Jun 10 2013]
MATHEMATICA
CoefficientList[Series[1/((1-3x)(1-6x)(1-7x)(1-9x)), {x, 0, 20}], x] (* or *) LinearRecurrence[{25, -225, 855, -1134}, {1, 25, 400, 5230}, 20] (* Harvey P. Dale, May 06 2018 *)
PROG
(Magma) [(2*9^(n+3)-9*7^(n+3)+8*6^(n+3)-3^(n+3))/72: n in [0..20]]; // Vincenzo Librandi, May 30 2019
CROSSREFS
Sequence in context: A286719 A174515 A028116 * A042204 A028112 A238511
KEYWORD
nonn,easy
STATUS
approved