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

A179099
Rectified 8-simplex numbers: the coefficient of x^(2n-2) in (1+x+x^2+...+x^(n-1))^9.
5
0, 1, 36, 414, 2598, 11385, 39303, 114387, 292743, 677556, 1446445, 2889315, 5459103, 9838062, 17022474, 28428930, 46025562, 72491859, 111410946, 167498452, 246872340, 357368319, 508905705, 713908845, 987789465, 1349495550
OFFSET
0,3
FORMULA
Empirical G.f.: x*(1+27*x+126*x^2+84*x^3+9*x^4)/(1-x)^9. - Colin Barker, Jun 20 2012
This conjecture is true, see A179095 for proof.
MATHEMATICA
f[n_] := CoefficientList[ Series[ Sum[ x^k, {k, 0, n - 1}]^9, {x, 0, 2 n + 3}], x][[2 n - 1]]; Array[f, 33] (* Robert G. Wilson v, Jul 30 2010 *)
PROG
(PARI) a(n) = polcoeff(((x^n-1)/(x-1))^9, 2*n-2); \\ Michel Marcus, Feb 17 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michael A. Jackson, Jun 29 2010
EXTENSIONS
More terms from Robert G. Wilson v, Jul 30 2010
STATUS
approved