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!)
A101452 Triangle read by rows: T(n,k) is number of noncrossing trees with n edges and having k branches. 0
1, 2, 1, 4, 4, 4, 8, 12, 24, 11, 16, 32, 96, 88, 41, 32, 80, 320, 440, 410, 146, 64, 192, 960, 1760, 2460, 1752, 564, 128, 448, 2688, 6160, 11480, 12264, 7896, 2199, 256, 1024, 7168, 19712, 45920, 65408, 63168, 35184, 8835, 512, 2304, 18432, 59136, 165312, 294336, 379008, 316656, 159030, 35989 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Mirror image of A101449.
T(n,k) = 2^(n-k)*binomial(n-1,k-1)*A030981(k).
Row sums yield the ternary numbers (A001764).
T(n,n) = A030981(n).
The average number of branchnodes over all noncrossing trees with n edges is n(n-1)(19n^2-23n+10)/(3(3n-1)(3n-2)) ~ 19n/27 (see A045738).
LINKS
P. Flajolet and M. Noy, Analytic combinatorics of non-crossing configurations, Discrete Math., 204, 203-229, 1999.
M. Noy, Enumeration of noncrossing trees on a circle, Discrete Math., 180, 301-313, 1998.
FORMULA
T(n, k) = [2^(n-k)/k]binomial(n-1, k-1)*Sum_{i=1..k} (-2)^(k-i)*binomial(k, i)*binomial(3i, i-1).
G.f.: G(t, z) = 1/(1-F), where F satisfies F = z(t + 2tF^2/(1-F) + tF^2/(1-F)^2 + 2F).
EXAMPLE
T(2,1)=2 because we have /_ and _\; T(2,2)=1 because we have /\
Triangle begins:
1;
2, 1;
4, 4, 4;
8, 12, 24, 11;
16, 32, 96, 88, 41;
...
MAPLE
T:=(n, k)->(2^(n-k)/k)*binomial(n-1, k-1)*sum((-2)^(k-i)*binomial(k, i)*binomial(3*i, i-1), i=1..k):for n from 1 to 10 do seq(T(n, k), k=1..n) od; # yields sequence in triangular form
MATHEMATICA
T[n_, k_] := 2^(n-k)/k Binomial[n-1, k-1] Sum[(-2)^(k-i) Binomial[k, i] Binomial[3i, i-1], {i, 1, k}];
Table[T[n, k], {n, 1, 10}, {k, 1, n}] // Flatten (* Jean-François Alcover, Jul 29 2018 *)
CROSSREFS
Sequence in context: A219194 A234306 A223012 * A019963 A165417 A193631
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Jan 19 2005
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 April 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)