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

A276925
Number of ordered set partitions of [n] with at most five elements per block.
5
1, 1, 3, 13, 75, 541, 4682, 47278, 545594, 7083258, 102177222, 1621316466, 28065324210, 526301293518, 10628781887724, 229983021824556, 5308071700475544, 130168746864660504, 3379871981604782664, 92634950510491052664, 2672550322299614660904
OFFSET
0,3
LINKS
FORMULA
E.g.f.: 1/(1-Sum_{i=1..5} x^i/i!).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
a(n-i)*binomial(n, i), i=1..min(n, 5)))
end:
seq(a(n), n=0..25);
MATHEMATICA
max = 25; CoefficientList[1/(1-Sum[x^i/i!, {i, 1, 5}]) + O[x]^(max+1), x]* Range[0, max]! (* Jean-François Alcover, May 24 2018 *)
CROSSREFS
Column k=5 of A276921.
Cf. A110038.
Sequence in context: A276924 A343788 A276895 * A343789 A276896 A276926
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 22 2016
STATUS
approved