OFFSET
0,5
COMMENTS
The Molien series for the finite Coxeter group of type D_k (k >= 3) has G.f. = 1/Prod_i (1-x^(1+m_i)) where the m_i are [1,3,5,...,2k-3,k-1]. If k is even only even powers of x appear, and we bisect the sequence.
REFERENCES
J. E. Humphreys, Reflection Groups and Coxeter Groups, Cambridge, 1990. See Table 3.1, page 59.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,1,0,1,0,0,1,0,-1,-1,-1,0,0,-2,0,0,1,1,0,1,2,1,0,1,-1, 0,-1,-2,-1,0,-1,-1,0,0,2,0,0,1,1,1,0,-1,0,0,-1,0,-1,0,1).
FORMULA
G.f.: 1/((1-x^2)*(1-x^4)*(1-x^6)*(1-x^7)*(1-x^8)*(1-x^10)*(1-x^12)).
MAPLE
seq(coeff(series(1/((1-x^7)*mul(1-x^(2*j), j=1..6)), x, n+1), x, n), n = 0..80); # G. C. Greubel, Jan 31 2020
MATHEMATICA
CoefficientList[Series[1/((1-x^7)*Product[1-x^(2*j), {j, 6}]), {x, 0, 80}], x] (* G. C. Greubel, Jan 31 2020 *)
PROG
(PARI) Vec(1/((1-x^7)*prod(j=1, 6, 1-x^(2*j))) +O('x^80)) \\ G. C. Greubel, Jan 31 2020
(Magma) R<x>:=PowerSeriesRing(Integers(), 80); Coefficients(R!( 1/((1-x^7)*(&*[1-x^(2*j): j in [1..6]])) )); // G. C. Greubel, Jan 31 2020
(Sage)
def A266770_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 1/((1-x^7)*product(1-x^(2*j) for j in (1..6))) ).list()
A266770_list(80) # G. C. Greubel, Jan 31 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 10 2016
STATUS
approved