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!)
A008801 Molien series for group [2,8]+ = 228. 1
1, 0, 2, 0, 3, 0, 4, 0, 6, 1, 8, 2, 10, 3, 12, 4, 15, 6, 18, 8, 21, 10, 24, 12, 28, 15, 32, 18, 36, 21, 40, 24, 45, 28, 50, 32, 55, 36, 60, 40, 66, 45, 72, 50, 78, 55, 84, 60, 91, 66, 98, 72, 105, 78, 112, 84, 120, 91, 128, 98, 136, 105, 144, 112, 153, 120, 162, 128, 171, 136, 180, 144, 190, 153 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: (1+x^9)/((1-x^2)^2*(1-x^8)).
G.f.: (1-x+x^2)*(1-x^3+x^6)/( (1+x^2)*(1+x^4)*(1+x)^2*(1-x)^3 ). - R. J. Mathar, Dec 18 2014
MAPLE
seq(coeff(series((1+x^9)/((1-x^2)^2*(1-x^8)), x, n+1), x, n), n = 0..80);
MATHEMATICA
CoefficientList[Series[(1+x^9)/((1-x^2)^2*(1-x^8)), {x, 0, 80}], x] (* G. C. Greubel, Sep 12 2019 *)
PROG
(PARI) my(x='x+O('x^80)); Vec((1+x^9)/((1-x^2)^2*(1-x^8))) \\ G. C. Greubel, Sep 12 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 80); Coefficients(R!( (1+x^9)/((1-x^2)^2*(1-x^8)) )); // G. C. Greubel, Sep 12 2019
(Sage)
def A008801_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P((1+x^9)/((1-x^2)^2*(1-x^8))).list()
A008801_list(80) # G. C. Greubel, Sep 12 2019
(GAP) a:=[1, 0, 2, 0, 3, 0, 4, 0, 6, 1, 8];; for n in [12..80] do a[n]:=a[n-1] +a[n-2]-a[n-3]+a[n-8]-a[n-9]-a[n-10]+a[n-11]; od; a; # G. C. Greubel, Sep 12 2019
CROSSREFS
Sequence in context: A194749 A284969 A097852 * A073739 A223707 A046767
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms added by G. C. Greubel, Sep 12 2019
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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)