The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A145454 Exponential transform of binomial(n,4) = A000332. 7
1, 0, 0, 0, 1, 5, 15, 35, 105, 756, 6510, 46530, 283470, 1667380, 11457446, 99776040, 969295145, 9298091180, 86154691680, 804769174536, 8052676029420, 88489327173660, 1038440150703340, 12501684521410700, 151866259113256611 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
a(n) is the number of ways of placing n labeled balls into indistinguishable boxes, where in each filled box 4 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 4 labels.
LINKS
N. J. A. Sloane, Transforms
FORMULA
E.g.f.: exp(exp(x)*x^4/4!).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
binomial(n-1, j-1) *binomial(j, 4) *a(n-j), j=1..n))
end:
seq(a(n), n=0..30);
MATHEMATICA
Table[Sum[BellY[n, k, Binomial[Range[n], 4]], {k, 0, n}], {n, 0, 25}] (* Vladimir Reshetnikov, Nov 09 2016 *)
CROSSREFS
4th column of A145460, A143398.
Sequence in context: A143695 A019531 A321345 * A292912 A346755 A091875
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 10 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 21 09:41 EDT 2024. Contains 372733 sequences. (Running on oeis4.)