A291824 Number of ordered rooted trees with n non-root nodes and all outdegrees <= nine.
1, 1, 2, 5, 14, 42, 132, 429, 1430, 4862, 16795, 58774, 207921, 742340, 2671380, 9679341, 35283057, 129298686, 476076425, 1760356290, 6534075415, 24337242771, 90934212636, 340748853950, 1280234838924, 4821722837721, 18200855131046, 68847269742844, 260929422296290
Offset: 0
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..1000
- N. Hein and J. Huang, Modular Catalan Numbers, arXiv:1508.01688 [math.CO], 2015
- Index entries for sequences related to rooted trees
Programs
-
Maple
b:= proc(u, o) option remember; `if`(u+o=0, 1, add(b(u-j, o+j-1), j=1..min(1, u))+ add(b(u+j-1, o-j), j=1..min(9, o))) end: a:= n-> b(0, n): seq(a(n), n=0..30);
-
Mathematica
b[u_, o_, k_] := b[u, o, k] = If[u + o == 0, 1, Sum[b[u - j, o + j - 1, k], {j, 1, Min[1, u]}] + Sum[b[u + j - 1, o - j, k], {j, 1, Min[k, o]}]]; a[n_] := b[0, n, 9]; Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Nov 07 2017, after Alois P. Heinz *)
-
PARI
Vec(serreverse(x*(1-x)/(1-x*x^9) + O(x*x^25))) \\ Andrew Howroyd, Nov 29 2017
Formula
G.f.: G(x)/x where G(x) is the reversion of x*(1-x)/(1-x^10). - Andrew Howroyd, Dec 01 2017
G.f. A(x) satisfies: A(x) = 1 + Sum_{k=1..9} x^k*A(x)^k. - Ilya Gutkovskiy, May 03 2019
Comments