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!)
A275283 Number of set partitions of [2n] with symmetric block size list of length n. 4

%I #14 Aug 21 2021 06:33:48

%S 1,1,3,19,171,2066,31346,559987,11954993,282835456,7785919355,

%T 229359684137,7731656573016,272633076900991,10876116332074739,

%U 446659746000614675,20580725671071449149,964732749192326683508,50418595763262446272127,2656265906893413392905767

%N Number of set partitions of [2n] with symmetric block size list of length n.

%H Alois P. Heinz, <a href="/A275283/b275283.txt">Table of n, a(n) for n = 0..200</a>

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

%F a(n) = A275281(2n,n).

%F a(n) ~ c * n^(n-1/2) * d^n / (exp(n) * 2^(n-3/2)), where d = 5.99720652866734051428..., c = 0.331364442872654716... if n is even and c = 0.32118925729236323... if n is odd. - _Vaclav Kotesovec_, Aug 08 2016

%e a(0) = 1: {}.

%e a(1) = 1: 12.

%e a(2) = 3: 12|34, 13|24, 14|23.

%e a(3) = 19: 12|34|56, 12|35|46, 12|36|45, 13|24|56, 13|25|46, 13|26|45, 14|23|56, 1|2345|6, 1|2346|5, 15|23|46, 1|2356|4, 16|23|45, 14|25|36, 14|26|35, 15|24|36, 1|2456|3, 16|24|35, 15|26|34, 16|25|34.

%t b[n_, s_] := b[n, s] = Expand[If[n>s, Binomial[n-1, n-s-1]*x, 1] + Sum[Binomial[n-1, j-1]*b[n-j, s+j]*Binomial[s+j-1, j-1], {j, 1, (n-s)/2}]*x^2];

%t T[n_] := T[n] = Function[p, Table[Coefficient[p, x, i], {i, 0, n}]][b[n, 0]];

%t a[n_] := T[2n][[n+1]];

%t a /@ Range[0, 20] (* _Jean-François Alcover_, Aug 21 2021,after _Alois P. Heinz_ in A275281 *)

%Y Bisection (even part) of A305197.

%Y Cf. A275281.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Jul 21 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 April 19 04:35 EDT 2024. Contains 371782 sequences. (Running on oeis4.)