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!)
A141200 G.f. satisfies: A(x) = x + A(A(x)^2). 13

%I #44 Aug 06 2020 22:02:18

%S 1,1,2,6,20,72,272,1065,4282,17576,73344,310226,1327036,5730948,

%T 24952776,109417672,482779032,2141832444,9548501992,42753897498,

%U 192184437012,866963862560,3923596330784,17809292215406,81055344516420

%N G.f. satisfies: A(x) = x + A(A(x)^2).

%H Paul D. Hanna, <a href="/A141200/b141200.txt">Table of n, a(n) for n = 1..100</a>

%H Li Guo, Yunnan Li, <a href="https://arxiv.org/abs/1906.06454">Braided dendriform and tridendriform algebras and braided Hopf algebras of planar trees</a>, arXiv:1906.06454 [math.QA], 2019.

%H Yunnan Li, Li Guo, <a href="https://doi.org/10.1007/s10801-020-00957-0">Braided dendriform and tridendriform algebras, and braided Hopf algebras of rooted trees</a>, Journal of Algebraic Combinatorics (2020).

%F G.f. A(x) satisfies:

%F (1) A(x - A(x^2)) = x.

%F (2) A(x) = x + Sum_{n>=1} d^(n-1)/dx^(n-1) A(x^2)^n / n!.

%F (3) A(x) = x*exp( Sum_{n>=1} d^(n-1)/dx^(n-1) A(x^2)^n/x / n! ).

%F (4) A(x) = x + G(x) + G(G(x)) + G(G(G(x))) + G(G(G(G(x)))) +... where G(x) = A(x)^2 = g.f. of A141201.

%F Contribution from _Paul D. Hanna_, Jun 18 2010: (Start)

%F Derivative of g.f. A(x) satisfies A'(x) = 1/(1 - 2*A(x)*A'(A(x)^2)).

%F Radius of convergence, r, and related values:

%F . r = 0.206450159053688924498041214308637032933597292895284203439137...

%F . A(r) = 0.350063281326319514237505104302392755865233862157808469329...

%F where r = A(r) - A(A(r)^2);

%F . A(A(r)^2) = 0.1436131222726305897394638899937557229316365692625242...

%F . A'(A(r)^2) = 1.428313184135166508863259733728425402891099463888244...

%F where A'(A(r)^2) = 1/(2*A(r)).

%F G.f. of A178852 is V(x) = x/(x - A(x^2)) where:

%F V'(A(r)) = 1/r,

%F V(A(x)) = A(x)/x and A(x/V(x)) = x.

%F (End)

%F Let B(x) = Sum_{n>=1} a(n)*x^(2*n), then B(x) = x^2 + B(B(x)). [From _Paul D. Hanna_, Jul 15 2011]

%F a(n) ~ c / (r^n * n^(3/2)), where c = 0.073344948246606003114646... . - _Vaclav Kotesovec_, Dec 02 2014

%e G.f.: A(x) = x + x^2 + 2*x^3 + 6*x^4 + 20*x^5 + 72*x^6 + 272*x^7 +...

%e The g.f. satisfies the series:

%e A(x) = x + A(x^2) + d/dx A(x^2)^2/2! + d^2/dx^2 A(x^2)^3/3! + d^3/dx^3 A(x^2)^4/4! +...

%e as well as the logarithmic series:

%e log(A(x)/x) = A(x^2)/x + [d/dx A(x^2)^3/x]/2! + [d^2/dx^2 A(x^2)^3/x]/3! + [d^3/dx^3 A(x^2)^4/x]/4! +...

%e Related expansions.

%e A(x)^2 = x^2 + 2*x^3 + 5*x^4 + 16*x^5 + 56*x^6 + 208*x^7 + 804*x^8 +...

%e The series reversion of A(x) equals x - A(x^2), therefore

%e A(x - x^2 - x^4 - 2*x^6 - 6*x^8 - 20*x^10 - 72*x^12 -...) = x.

%e Let G(x) = A(x)^2 then

%e G(G(x)) = x^4 + 4*x^5 + 16*x^6 + 64*x^7 + 260*x^8 + 1072*x^9 +...

%e G(G(G(x))) = x^8 + 8*x^9 + 48*x^10 + 256*x^11 + 1290*x^12 +...

%e where A(x) = x + G(x) + G(G(x)) + G(G(G(x))) + ...

%t terms = 25; A[_] = 0; Do[A[x_] = x + A[A[x]^2] + O[x]^(terms+1) // Normal, terms+1]; CoefficientList[A[x], x] // Rest (* _Jean-François Alcover_, Jan 09 2018 *)

%t a[ n_] := If[ n < 0, 0, Module[{A = 0}, Do[ A = Normal[A] + x O[x]^k; A = x + (A /. x -> A^2), {k, n}]; SeriesCoefficient[ A, {x, 0, n}]]]; (* _Michael Somos_, Jul 16 2018 *)

%o (PARI) {a(n)=local(A=x+x^2);for(i=0,n,A=serreverse(x-subst(A,x,x^2+x^2*O(x^n)))) ;polcoeff(A,n)}

%o (PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}

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

%o for(n=1,25,print1(a(n),", "))

%o (PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}

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

%o for(n=1,25,print1(a(n),", "))

%o (PARI) {a(n) = my(A); if( n<0, 0, for(k=1, n, A = truncate(A) + x * O(x^k); A = x + subst(A, x, A^2)); polcoeff(A, n))}; /* _Michael Somos_, Jul 16 2018 */

%o (Maxima) Co(n, k, F):=if k=1 then F(n) else sum(F(i+1)*Co(n-i-1, k-1, F), i, 0, n-k); a(n):=if n=1 then 1 else sum(if 2*k>n then 0 else Co(n, 2*k, a)*a(k), k, 1, n); makelist(a(n), n, 1, 10); /*_Vladimir Kruchinin_, Aug 02 2011 */

%o (Maxima) T(n,m):=if n=m then 1 else kron_delta(n,m)+sum(binomial(m,j)*sum(if 2*k<=n-j then T(n-j,2*k)*T(k,m-j) else 0,k,m-j,n-j),j,0,m-1); makelist(T(n,1),n,1,12); /* _Vladimir Kruchinin_, May 02 2012 */

%Y Cf. A141201.

%Y Cf. A178852. [From _Paul D. Hanna_, Jun 18 2010]

%K nonn

%O 1,3

%A _Paul D. Hanna_, Jun 12 2008, Jun 13 2008

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 23 15:11 EDT 2024. Contains 371914 sequences. (Running on oeis4.)