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!)
A327505 Number of set partitions of [n] where each subset is again partitioned into four nonempty subsets. 9

%I #13 May 08 2022 08:24:31

%S 1,0,0,0,1,10,65,350,1736,9030,60355,561550,6183221,69469400,

%T 761767370,8239194600,91058524831,1073790441370,13900626022985,

%U 196759304278250,2963381404815566,46227649788125190,736940002561065325,12005645243802471250,201482801573414254301

%N Number of set partitions of [n] where each subset is again partitioned into four nonempty subsets.

%H Alois P. Heinz, <a href="/A327505/b327505.txt">Table of n, a(n) for n = 0..495</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Partition_of_a_set">Partition of a set</a>

%F E.g.f.: exp((exp(x)-1)^4/4!).

%F a(n) = Sum_{k=0..floor(n/4)} (4*k)! * Stirling2(n,4*k)/(24^k * k!). - _Seiichi Manyama_, May 07 2022

%p a:= proc(n) option remember; `if`(n=0, 1, add(a(n-j)

%p *binomial(n-1, j-1)*Stirling2(j, 4), j=4..n))

%p end:

%p seq(a(n), n=0..25);

%t a[n_] := a[n] = If[n == 0, 1, Sum[a[n - j] Binomial[n - 1, j - 1] StirlingS2[j, 4], {j, 4, n}]];

%t a /@ Range[0, 25] (* _Jean-François Alcover_, Dec 16 2020, after _Alois P. Heinz_ *)

%o (PARI) a(n) = sum(k=0, n\4, (4*k)!*stirling(n, 4*k, 2)/(24^k*k!)); \\ _Seiichi Manyama_, May 07 2022

%Y Column k=4 of A324162.

%Y Cf. A346895.

%K nonn

%O 0,6

%A _Alois P. Heinz_, Sep 14 2019

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 23 13:04 EDT 2024. Contains 371913 sequences. (Running on oeis4.)