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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A008632 Molien series for A_9. 2
1, 1, 2, 3, 5, 7, 11, 15, 22, 30, 41, 54, 73, 94, 123, 157, 201, 252, 318, 393, 488, 598, 732, 887, 1076, 1291, 1549, 1845, 2194, 2592, 3060, 3589, 4206, 4904, 5708, 6615, 7658, 8825, 10158, 11651, 13343, 15231, 17365, 19735, 22402, 25361, 28670 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
REFERENCES
D. J. Benson, Polynomial Invariants of Finite Groups, Cambridge, 1993, p. 105.
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,1,0,1,-2,-1,-1,-1,2,0,1,3,-1,1,0,-3,0,-2,-1,1,-1,1,2,0,3,0,-1,1,-3,-1,0,-2,1,1,1,2,-1,0,-1,-1,1).
FORMULA
G.f.: (1+x^36)/((1-x)*(1-x^2)*(1-x^3)*(1-x^4)*(1-x^5)*(1-x^6)*(1-x^7)*(1-x^8)* (1-x^9)).
MAPLE
seq(coeff(series( (1+x^36)/mul((1-x^j), j=1..9)), x, n+1), x, n), n = 0..50); # G. C. Greubel, Feb 02 2020
MATHEMATICA
CoefficientList[Series[(1+x^36)/Product[(1-x^j), {j, 1, 9}], {x, 0, 50}], x] (* G. C. Greubel, Feb 02 2020 *)
PROG
(PARI) Vec( (1+x^36)/prod(j=1, 9, 1-x^j) +O('x^50) ) \\ G. C. Greubel, Feb 02 2020
(Magma) R<x>:=PowerSeriesRing(Integers(), 50); Coefficients(R!( (1+x^36)/(&*[1-x^j: j in [1..9]]) )); // G. C. Greubel, Feb 02 2020
(Sage)
def A008631_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (1+x^36)/product(1-x^j for j in (1..9)) ).list()
A008631_list(70) # G. C. Greubel, Feb 02 2020
CROSSREFS
Sequence in context: A026815 A341913 A008638 * A347575 A238867 A035988
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Sean A. Irvine, Apr 01 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 March 28 14:38 EDT 2024. Contains 371254 sequences. (Running on oeis4.)