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!)
A181315 G.f. A(x) satisfies A(x) = Product_{n>=1} (1 + x^n*A(x)^n). 11

%I #21 Sep 26 2023 12:10:52

%S 1,1,2,6,19,64,227,832,3125,11970,46579,183614,731688,2942673,

%T 11928707,48688888,199932987,825379993,3423614756,14261439594,

%U 59635806865,250241613688,1053380320889,4446989542144,18823433444211,79871578901283

%N G.f. A(x) satisfies A(x) = Product_{n>=1} (1 + x^n*A(x)^n).

%H Vaclav Kotesovec, <a href="/A181315/b181315.txt">Table of n, a(n) for n = 0..1000</a>

%F G.f.: A(x) = Sum_{n>=0} A000009(n)*x^n*A(x)^n, where A000009(n) is the number of partitions of n into distinct parts.

%F G.f.: A(x) = (1/x)*Series_Reversion[x^(1/24)*eta(x)/eta(x^2)] (cf. A081362).

%F G.f. satisfies A(x) = exp( Sum_{n>=1} (x^n/n)*A(x)^n/(1 - (x*A(x))^(2*n)) ).

%F a(n) ~ c * d^n / n^(3/2), where d = A270914 = 4.50247674761735448773859393270078440676312875609162163346454... and c = A366018 = 0.482420439587319764659364391266849418507665645926542970519109122... - _Vaclav Kotesovec_, Aug 21 2018

%e G.f.: A(x) = 1 + x + 2*x^2 + 6*x^3 + 19*x^4 + 64*x^5 + 227*x^6 +...

%e The g.f. A = A(x) satisfies

%e log(A) = x*A/(1-x^2*A^2) + (x^2/2)*A^2/(1-x^4*A^4) + (x^3/3)*A^3/(1-x^6*A^6) +...

%p nmax:=25: kmax:=nmax: for n from 1 to nmax+1 do A(x):=add(a(k)*x^k, k=0..kmax-1): A(x) := product((1 + x^k*A(x)^k),k=1..kmax+1): a(n-1):=coeff(A(x),x,n-1): od: seq(a(n),n=0..nmax); # _Johannes W. Meijer_, Jul 04 2011

%t InverseSeries[x QPochhammer[x, x^2] + O[x]^30][[3]] (* _Vladimir Reshetnikov_, Nov 21 2016 *)

%o (PARI) {a(n)=polcoeff(1/x*serreverse(x/prod(k=1,n+1,1+x^k+x*O(x^n))),n)}

%o (PARI) {a(n)=local(A=1+x); for(i=1, n, A=exp(sum(m=1, n, (x*A+x*O(x^n))^m/(1-(x*A)^(2*m))/m))); polcoeff(A, n)}

%Y Cf. A000009, A081362, A109085, A270914, A366018, A366026.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Oct 16 2010

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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)