cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A022604 Expansion of Product_{m>=1} (1+q^m)^(-9).

This page as a plain text file.
%I A022604 #17 Feb 06 2018 15:14:03
%S A022604 1,-9,36,-93,207,-459,957,-1827,3357,-6061,10620,-18045,30006,-49122,
%T A022604 79128,-125247,195435,-301599,460167,-694026,1036368,-1534305,2252277,
%U A022604 -3278709,4736973,-6797196,9689103,-13722487
%N A022604 Expansion of Product_{m>=1} (1+q^m)^(-9).
%H A022604 Seiichi Manyama, <a href="/A022604/b022604.txt">Table of n, a(n) for n = 0..1000</a>
%F A022604 a(n) ~ (-1)^n * 3^(1/4) * exp(Pi*sqrt(3*n/2)) / (2^(7/4) * n^(3/4)). - _Vaclav Kotesovec_, Aug 27 2015
%F A022604 a(0) = 1, a(n) = -(9/n)*Sum_{k=1..n} A000593(k)*a(n-k) for n > 0. - _Seiichi Manyama_, Apr 05 2017
%F A022604 G.f.: exp(-9*Sum_{k>=1} (-1)^(k+1)*x^k/(k*(1 - x^k))). - _Ilya Gutkovskiy_, Feb 06 2018
%t A022604 nmax = 50; CoefficientList[Series[Product[1/(1 + x^k)^9, {k, 1, nmax}], {x, 0, nmax}], x] (* _Vaclav Kotesovec_, Aug 27 2015 *)
%Y A022604 Column k=9 of A286352.
%K A022604 sign
%O A022604 0,2
%A A022604 _N. J. A. Sloane_