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!)
A272496 Number of ordered set partitions of [n] with nondecreasing block sizes and maximal block size equal to six. 2
1, 7, 84, 840, 9870, 113652, 1480248, 19699680, 286768482, 4358914560, 71096721696, 1216711960464, 22116370171896, 421629228820800, 8473857766133760, 178260053918650704, 3931319749640138856, 90499126549555707984, 2174651142277047610176, 54390059451824183287200 (list; graph; refs; listen; history; text; internal format)
OFFSET
6,2
LINKS
FORMULA
E.g.f.: x^6 * Product_{i=1..6} (i-1)!/(i!-x^i).
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
b(n, i-1)+`if`(i>n, 0, binomial(n, i)*b(n-i, i))))
end:
a:= n-> (k-> b(n, k) -b(n, k-1))(6):
seq(a(n), n=6..30);
CROSSREFS
Column k=6 of A262071.
Sequence in context: A053128 A027819 A269895 * A177009 A099674 A067413
KEYWORD
nonn
AUTHOR
Alois P. Heinz, May 01 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 May 28 04:02 EDT 2024. Contains 372900 sequences. (Running on oeis4.)