The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A192402 G.f. A(x) satisfies A(x) = 1 + Sum_{n>=1} A(x)^n * 2*x^(2*n-1)/(1 - 2*x^(2*n-1)). 2
1, 2, 8, 34, 140, 586, 2476, 10522, 45048, 194210, 842672, 3678946, 16155140, 71328210, 316536532, 1411398138, 6321140080, 28426660498, 128325523272, 581349815466, 2642337533500, 12046547596514, 55076433751372, 252470682559914 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Related q-series identity:
Sum_{n>=1} y^n*z*q^(2*n-1)/(1-z*q^(2*n-1)) = Sum_{n>=1} z^n*y*q^n/(1-y*q^(2*n)); here q=x, y=A(x), z=2.
LINKS
FORMULA
G.f. satisfies: A(x) = 1 + Sum_{n>=1} 2^n*A(x)*x^n/(1 - A(x)*x^(2*n)).
EXAMPLE
G.f.: A(x) = 1 + 2*x + 8*x^2 + 34*x^3 + 140*x^4 + 586*x^5 + 2476*x^6 +...
which satisfies the following relations:
A(x) = 1 + A(x)*2*x/(1-2*x) + A(x)^2*2*x^3/(1-2*x^3) + A(x)^3*2*x^5/(1-2*x^5) +...
A(x) = 1 + 2*A(x)*x/(1-A(x)*x^2) + 4*A(x)*x^2/(1-A(x)*x^4) + 8*A(x)*x^3/(1-A(x)*x^6) +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+sum(m=1, n, A^m*2*x^(2*m-1)/(1-2*x^(2*m-1)+x*O(x^n)))); polcoeff(A, n)}
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+sum(m=1, n, 2^m*A*x^m/(1-A*x^(2*m)+x*O(x^n)))); polcoeff(A, n)}
CROSSREFS
Sequence in context: A345757 A369836 A228655 * A014445 A113440 A296227
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 30 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 May 13 13:48 EDT 2024. Contains 372519 sequences. (Running on oeis4.)