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

%I #4 May 01 2016 19:57:45

%S 73566121315513295589120000,302438498741554659644160000,

%T 2585849164240292339957568000,17681163441201479441398176000,

%U 144230432460463828639480320000,1126747392322972404668523840000,11096383744399962905356299840000,126335461333640259667975104096000

%N Number of set partitions of [n] into eight blocks with distinct sizes.

%H Alois P. Heinz, <a href="/A272520/b272520.txt">Table of n, a(n) for n = 36..1000</a>

%F a(n) = n! * [x^n*y^8] Product_{n>=1} (1+y*x^n/n!).

%p b:= proc(n, i, t) option remember; `if`(t>i or t*(t+1)/2>n

%p or t*(2*i+1-t)/2<n, 0, `if`(n=0, 1, b(n,i-1,t)+

%p `if`(i>n, 0, b(n-i, i-1, t-1)*binomial(n,i))))

%p end:

%p a:= n-> b(n$2, 8):

%p seq(a(n), n=36..45);

%Y Column k=8 of A131632.

%K nonn

%O 36,1

%A _Alois P. Heinz_, May 01 2016

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 June 3 20:36 EDT 2024. Contains 373088 sequences. (Running on oeis4.)