A145459 Exponential transform of C(n,9) = A000582.
1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 55, 220, 715, 2002, 5005, 11440, 24310, 72930, 1016158, 18643560, 258952330, 2845739820, 26177047270, 209411148144, 1495786618975, 9722602868550, 58373582056075, 329869586346300, 1861266055353705
Offset: 0
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..500
- N. J. A. Sloane, Transforms
- Index entries for sequences related to rooted trees
Programs
-
Maple
a:= proc(n) option remember; `if`(n=0, 1, add(binomial(n-1, j-1) *binomial(j,9) *a(n-j), j=1..n)) end: seq(a(n), n=0..35);
Formula
E.g.f.: exp(exp(x)*x^9/9!).
Comments