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.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..500
N. J. A. Sloane, Transforms
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
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 10 2008
STATUS
approved