login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A145459
Exponential transform of C(n,9) = A000582.
3
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,11
COMMENTS
a(n) is the number of ways of placing n labeled balls into indistinguishable boxes, where in each filled box 9 balls are seen at the top.
a(n) is also the number of forests of labeled rooted trees of height at most 1, with n labels, where each root contains 9 labels.
FORMULA
E.g.f.: exp(exp(x)*x^9/9!).
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);
CROSSREFS
9th column of A145460, A143398.
Sequence in context: A000582 A229890 A243744 * A290893 A034241 A341223
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 10 2008
STATUS
approved