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.

A177155 G.f.: exp( Integral (theta_3(x)^8-1)/(16x) dx ), where theta_3(x) = 1 + Sum_{n>=1} 2*x^(n^2) is a Jacobi theta function.

This page as a plain text file.
%I A177155 #10 Apr 10 2019 03:18:26
%S A177155 1,1,4,13,35,87,217,539,1291,2999,6880,15595,34738,76202,165282,
%T A177155 354655,752546,1580514,3289337,6787085,13887937,28195434,56824772,
%U A177155 113729640,226104615,446665922,877063515,1712252521,3324245063,6419561961
%N A177155 G.f.: exp( Integral (theta_3(x)^8-1)/(16x) dx ), where theta_3(x) = 1 + Sum_{n>=1} 2*x^(n^2) is a Jacobi theta function.
%C A177155 Compare to g.f. of partitions in which no parts are multiples of 4:
%C A177155 g.f. of A001935 = exp( Integral (theta_3(x)^4-1)/(8x) dx ).
%H A177155 Seiichi Manyama, <a href="/A177155/b177155.txt">Table of n, a(n) for n = 0..10000</a>
%F A177155 G.f.: exp( Sum_{n>=1} A008457(n)*x^n/n ) where A008457(n) = Sum_{d|n} (-1)^(n-d)*d^3.
%F A177155 a(n) ~ exp(2*Pi*n^(3/4)/3 - Zeta(3)/Pi^2) / (4*n^(5/8)). - _Vaclav Kotesovec_, Apr 10 2019
%e A177155 G.f.: A(x) = 1 + x + 4*x^2 + 13*x^3 + 35*x^4 + 87*x^5 +...
%e A177155 log(A(x)) = x + 7*x^2/2 + 28*x^3/3 + 71*x^4/4 + 126*x^5/5 +...+ A008457(n)*x^n/n +...
%t A177155 nmax = 40; Abs[CoefficientList[Series[Product[1/(1 - x^k)^((-1)^k*k^2), {k, 1, nmax}], {x, 0, nmax}], x]] (* _Vaclav Kotesovec_, Apr 10 2019 *)
%t A177155 nmax = 40; CoefficientList[Series[Product[(1 + x^(2*k - 1))^((2*k - 1)^2)/(1 - x^(2*k))^(4*k^2), {k, 1, nmax}], {x, 0, nmax}], x] (* _Vaclav Kotesovec_, Apr 10 2019 *)
%o A177155 (PARI) {a(n)=polcoeff(exp(sum(m=1,n, sumdiv(m,d,(-1)^(m-d)*d^3)*x^m/m)+x*O(x^n)),n)}
%o A177155 (PARI) {a(n)=local(theta3=1+sum(m=1,sqrtint(2*n+2),2*x^(m^2)+x*O(x^n)));polcoeff(exp(intformal((theta3^8-1)/(16*x))),n)}
%Y A177155 Cf. A138503, A008457, A001935, A000143, A307462.
%K A177155 nonn
%O A177155 0,3
%A A177155 _Paul D. Hanna_, May 03 2010, May 08 2010