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!)
A192625 G.f. satisfies: A(x) = Product_{n>=1} (1 + x^n*A(x))^2/((1-x^n)*(1 - x^n*A(x)^2)). 2
1, 4, 28, 240, 2348, 24952, 280192, 3271232, 39310668, 483032980, 6041149272, 76648727632, 984161689728, 12764078032568, 166969699620640, 2200415358484800, 29186416580736300, 389340777798701672, 5220028320540100220, 70303231772070200912 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Related q-series (Heine) identity:
1 + Sum_{n>=1} x^n*Product_{k=0..n-1} (y+q^k)*(z+q^k)/((1-x*q^k)*(1-q^(k+1)) = Product_{n>=0} (1+x*y*q^n)*(1+x*z*q^n)/((1-x*q^n)*(1-x*y*z*q^n)),
here q=x, x=x, y=z=A(x).
LINKS
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.
EXAMPLE
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 +...
PROG
(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)}
CROSSREFS
Sequence in context: A368967 A369510 A188266 * A199561 A103211 A229644
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 06 2011
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 August 18 00:45 EDT 2024. Contains 375255 sequences. (Running on oeis4.)