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”).

A145457
Exponential transform of C(n,7) = A000580.
3
1, 0, 0, 0, 0, 0, 0, 1, 8, 36, 120, 330, 792, 1716, 5148, 57915, 835120, 9354488, 84047184, 638567124, 4256855760, 25607297880, 144863655024, 869425029957, 7081044528888, 83816629147900, 1131047706331400, 14634713798592030, 173380501913172840
OFFSET
0,9
COMMENTS
a(n) is the number of ways of placing n labeled balls into indistinguishable boxes, where in each filled box 7 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 7 labels.
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..556 (terms 0..200 from Alois P. Heinz)
N. J. A. Sloane, Transforms
FORMULA
E.g.f.: exp(exp(x)*x^7/7!).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1,
add(binomial(n-1, j-1) *binomial(j, 7) *a(n-j), j=1..n))
end:
seq(a(n), n=0..30);
MATHEMATICA
a[n_] := a[n] = If[n == 0, 1, Sum[Binomial[n - 1, j - 1] *Binomial[j, 7]* a[n - j], {j, 1, n}]];
Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Jun 11 2018, after Alois P. Heinz *)
CROSSREFS
7th column of A145460, A143398.
Sequence in context: A290995 A229888 A243742 * A145136 A290892 A144901
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 10 2008
STATUS
approved