A192625 G.f. satisfies: A(x) = Product_{n>=1} (1 + x^n*A(x))^2/((1-x^n)*(1 - x^n*A(x)^2)).
1, 4, 28, 240, 2348, 24952, 280192, 3271232, 39310668, 483032980, 6041149272, 76648727632, 984161689728, 12764078032568, 166969699620640, 2200415358484800, 29186416580736300, 389340777798701672, 5220028320540100220, 70303231772070200912
Offset: 0
Keywords
Examples
G.f.: A(x) = 1 + 4*x + 28*x^2 + 240*x^3 + 2348*x^4 + 24952*x^5 +... The g.f. A = A(x) satisfies: A = (1+x*A)^2/((1-x)*(1-x*A^2)) * (1+x^2*A)^2/((1-x^2)*(1-x^2*A^2)) * (1+x^3*A)^2/((1-x^3)*(1-x^3*A^2)) *... A = {1 + x*(A+1)^2/(1-x)^2 + x^2*(A+1)^2*(A+x)^2/((1-x)*(1-x^2))^2 + x^3*(A+1)^2*(A+x)^2*(A+x^2)^2/((1-x)*(1-x^2)*(1-x^3))^2 +...
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 0..300
Programs
-
Mathematica
(* Calculation of constants {d,c}: *) Chop[{1/r, (1/(2*Sqrt[Pi]))*s*(-1 + s^2)* Sqrt[(Log[ r]*(r*Log[r]*QPochhammer[-s, r]*QPochhammer[s^2, r] * Derivative[0, 1][QPochhammer][r, r] + QPochhammer[r, r]*(-2*r*Log[r]*QPochhammer[s^2, r]* Derivative[0, 1][QPochhammer][-s, r] + QPochhammer[-s, r]*((-QPochhammer[s^2, r])*(Log[1 - r] + QPolyGamma[0, 1, r]) + r*Log[r] * Derivative[0, 1][QPochhammer][s^2, r]))))/(QPochhammer[ r, r]*QPochhammer[-s, r]*QPochhammer[s^2, r] * (s*(1 + s^2) * Log[r]^2 + (-1 + s^2)^2 * QPolyGamma[1, Log[-s]/Log[r], r] - 2*(-1 + s^2)^2 * QPolyGamma[1, (2*Log[s])/Log[r], r]))]} /. FindRoot[{s + ((-1 + s) * QPochhammer[-s, r]^2)/((1 + s) * QPochhammer[r, r] * QPochhammer[s^2, r]) == 0, (2*s)/(-1 + s^2) + (2*(-QPolyGamma[0, Log[-s]/Log[r], r] + QPolyGamma[0, (2*Log[s])/Log[r], r]))/Log[r] == 1}, {r, 1/10}, {s, 2}, WorkingPrecision -> 120]] (* Vaclav Kotesovec, Jun 30 2025 *)
-
PARI
{a(n)=local(A=1+x);for(i=1,n,A=prod(k=1,n,(1+x^k*A)^2/((1-x^k+x*O(x^n))*(1-x^k*A^2))));polcoeff(A,n)}
-
PARI
{a(n)=local(A=1+x);for(i=1,n,A=1+sum(m=1,n,x^m*prod(k=0,m-1,(A+x^k)^2/(1-x^(k+1)+x*O(x^n))^2)));polcoeff(A,n)}
Formula
G.f. satisfies: A(x) = 1 + Sum_{n>=1} x^n*Product_{k=0..n-1} (A(x) + x^k)^2/(1-x^(k+1))^2 due to the Heine identity.
a(n) ~ c * d^n / n^(3/2), where d = 14.589835921559349866989401284706614286378779559... and c = 0.453836352355009937995115064134624562210185... - Vaclav Kotesovec, Jun 30 2025
Comments