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!)
A143597 G.f. satisfies: A(x) = 1 + x*A(2x)*A(-x). 0
1, 1, 1, 3, 19, 297, 8953, 572155, 72116459, 18460128753, 9414877745601, 9640779710687955, 19725063387945457219, 80793830752052788593529, 661701532957780822275151305, 10841317673677535233876159099755 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f. satisfies: A(x) = (1 + x*A(2x))/(1 + x^2*A(2x)*A(-2x)).
a(n) = Sum_{k=0..n-1} 2^k*(-1)^(n-1-k)*a(k)*a(n-1-k) for n>0 with a(0)=1.
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 3*x^3 + 19*x^4 + 297*x^5 + 8953*x^6 +...
A(x) = 1 + x*A(2x)*[1 - x*A(-2x)*[1 + x*A(2x)*[1 - x*A(-2x)*[1 +...]]]].
PROG
(PARI) {a(n)=local(A=1+x*O(x^n)); for(i=0, n, A=1+x*subst(A, x, 2*x)*subst(A, x, -x)); polcoeff(A, n)}
(PARI) {a(n)=if(n==0, 1, sum(k=0, n-1, 2^k*(-1)^(n-1-k)*a(k)*a(n-1-k)))}
CROSSREFS
Sequence in context: A231620 A268646 A356512 * A224681 A115705 A136171
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 28 2008
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 July 15 16:36 EDT 2024. Contains 374333 sequences. (Running on oeis4.)