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!)
A276926 Number of ordered set partitions of [n] with at most six elements per block. 5
1, 1, 3, 13, 75, 541, 4683, 47292, 545818, 7086954, 102241902, 1622523210, 28089336198, 526810157874, 10640241569958, 230256584914356, 5314976561846952, 130352566702702344, 3385021286975255928, 92786398312428612792, 2677217312112863784264 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: 1/(1-Sum_{i=1..6} x^i/i!).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
a(n-i)*binomial(n, i), i=1..min(n, 6)))
end:
seq(a(n), n=0..25);
MATHEMATICA
max = 25; CoefficientList[1/(1-Sum[x^i/i!, {i, 1, 6}]) + O[x]^(max+1), x]* Range[0, max]! (* Jean-François Alcover, May 24 2018 *)
CROSSREFS
Column k=6 of A276921.
Cf. A148092.
Sequence in context: A276925 A343789 A276896 * A343790 A276897 A276927
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 22 2016
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 April 20 00:58 EDT 2024. Contains 371798 sequences. (Running on oeis4.)