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!)
A088327 G.f.: exp(Sum_{k>=1} B(x^k)/k), where B(x) = x + 2*x^2 + 5*x^3 + 14*x^4 + 42*x^5 + ... = (C(x)-1)/x and C is the g.f. for the Catalan numbers A000108. 8

%I #33 Dec 13 2022 03:01:38

%S 1,1,3,8,25,77,256,854,2940,10229,36124,128745,463137,1677816,6118165,

%T 22432778,82660369,305916561,1136621136,4238006039,15852603939,

%U 59471304434,223704813807,843547443903,3188064830876,12074092672950,45816941923597,174173975322767

%N G.f.: exp(Sum_{k>=1} B(x^k)/k), where B(x) = x + 2*x^2 + 5*x^3 + 14*x^4 + 42*x^5 + ... = (C(x)-1)/x and C is the g.f. for the Catalan numbers A000108.

%C a(n) is the number of forests of rooted plane binary trees (each node has outdegree = 0 or 2) where the trees have a total of n internal nodes. Cf. A222006. - _Geoffrey Critzer_, Feb 26 2013

%H Alois P. Heinz, <a href="/A088327/b088327.txt">Table of n, a(n) for n = 0..1000</a>

%F Euler transform of Catalan numbers (A000108). - _Franklin T. Adams-Watters_, Mar 01 2006

%F a(n) ~ c * 4^n / n^(3/2), where c = exp(Sum_{k>=1} (-2 + 4^k - 4^k*sqrt(1 - 4^(1-k)))/(2*k) ) / sqrt(Pi) = 1.60022306097485382475864802335610662545... - _Vaclav Kotesovec_, Mar 21 2021

%p with(numtheory):

%p a:= proc(n) option remember; `if`(n=0, 1, add(add(d*

%p binomial(2*d, d)/(d+1), d=divisors(j))*a(n-j), j=1..n)/n)

%p end:

%p seq(a(n), n=0..40); # _Alois P. Heinz_, Sep 10 2012

%t With[{nn=35}, CoefficientList[Series[Product[1/(1-x^i)^CatalanNumber[i], {i,nn}], {x,0,nn}], x]] (* _Geoffrey Critzer_, Feb 26 2013 *).

%o (SageMath) # uses[EulerTransform from A166861]

%o b = EulerTransform(lambda n: binomial(2*n, n)/(n+1))

%o print([b(n) for n in range(30)]) # _Peter Luschny_, Nov 11 2020

%o (Magma)

%o m:=35;

%o f:= func< x | (&*[1/(1-x^j)^Catalan(j): j in [1..m+2]]) >;

%o R<x>:=PowerSeriesRing(Rationals(), m); Coefficients(R!( f(x) )); // _G. C. Greubel_, Dec 12 2022

%Y Row sums of A275431.

%Y Cf. A222006, A304787.

%K nonn

%O 0,3

%A _N. J. A. Sloane_, Nov 06 2003

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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)