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!)
A272520 Number of set partitions of [n] into eight blocks with distinct sizes. 2
73566121315513295589120000, 302438498741554659644160000, 2585849164240292339957568000, 17681163441201479441398176000, 144230432460463828639480320000, 1126747392322972404668523840000, 11096383744399962905356299840000, 126335461333640259667975104096000 (list; graph; refs; listen; history; text; internal format)
OFFSET
36,1
LINKS
FORMULA
a(n) = n! * [x^n*y^8] Product_{n>=1} (1+y*x^n/n!).
MAPLE
b:= proc(n, i, t) option remember; `if`(t>i or t*(t+1)/2>n
or t*(2*i+1-t)/2<n, 0, `if`(n=0, 1, b(n, i-1, t)+
`if`(i>n, 0, b(n-i, i-1, t-1)*binomial(n, i))))
end:
a:= n-> b(n$2, 8):
seq(a(n), n=36..45);
CROSSREFS
Column k=8 of A131632.
Sequence in context: A338957 A338953 A345296 * A265913 A217425 A214266
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 20 14:08 EDT 2024. Contains 372717 sequences. (Running on oeis4.)