|
EXAMPLE
|
a(5)=605 because there are 605 possibilities to form 5 nodes into a rooted tree and order the nodes of this tree such that no two subtrees interleave. Two subtrees t1, t2 interleave if their roots are (tree-)disjoint and there are four nodes l1, r1 from t1 and l2, r2 from t2 such that l1 < l2 < r1 < r2.
Comment from Paul D. Hanna (pauldhanna(AT)juno.com), Aug 08 2007: G.f. A(x) satisfies a(n) = [x^(n-1)] (1 + A(x))^n as illustrated by:
(1+A)^1 = [(1), 1, 2, 9, 64, 605, 6996, 94556, ...];
(1+A)^2 = [1, (2), 5, 22, 150, 1374, 15539, 206676, ...];
(1+A)^3 = [1, 3, (9), 40, 264, 2346, 25937, 339294, ...];
(1+A)^4 = [1, 4, 14, (64), 413, 3568, 38558, 495848, ...];
(1+A)^5 = [1, 5, 20, 95, (605), 5096, 53840, 680365, ...];
(1+A)^6 = [1, 6, 27, 134, 849, (6996), 72302, 897558, ...];
(1+A)^7 = [1, 7, 35, 182, 1155, 9345, (94556), 1152936, ...]; ...
where only the coefficients of powers (1+A)^m, m=1..7, are shown.
The terms in parenthesis form the initial terms of this sequence.
|