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!)
A087903 Triangle read by rows of the numbers T(n,k) (n > 1, 0 < k < n) of set partitions of n of length k which do not have a proper subset of parts with a union equal to a subset {1,2,...,j} with j < n. 12

%I #32 Jun 22 2022 20:56:40

%S 1,1,1,1,4,1,1,11,9,1,1,26,48,16,1,1,57,202,140,25,1,1,120,747,916,

%T 325,36,1,1,247,2559,5071,3045,651,49,1,1,502,8362,25300,23480,8260,

%U 1176,64,1,1,1013,26520,117962,159736,84456,19404,1968,81,1,1,2036,82509,525608,998830,749154,253764,40944,3105,100,1

%N Triangle read by rows of the numbers T(n,k) (n > 1, 0 < k < n) of set partitions of n of length k which do not have a proper subset of parts with a union equal to a subset {1,2,...,j} with j < n.

%C Another version of the triangle T(n,k), 0 <= k <= n, given by [1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, ...] DELTA [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, ...] where DELTA is the operator defined in A084938; see also A086329 for a triangle transposed. - _Philippe Deléham_, Jun 13 2004

%H G. C. Greubel, <a href="/A087903/b087903.txt">Rows n = 2..52 of the triangle, flattened</a>

%H V. E. Adler, <a href="http://arxiv.org/abs/1510.02900">Set partitions and integrable hierarchies</a>, arXiv:1510.02900 [nlin.SI], 2015.

%H M. Rosas and B. Sagan, <a href="http://arxiv.org/abs/math/0208168">Symmetric functions in noncommuting variables</a>, arXiv:math/0208168 [math.CO], 2002, 2004.

%H M. C. Wolf, <a href="http://dx.doi.org/10.1215/S0012-7094-36-00253-3">Symmetric Functions of Non-commutative Elements</a>, Duke Math. J., 2 (1936), 626-637.

%F T(n, n-1) = T(n,1) = 1.

%F T(n, n-2) = (n-2)^2.

%F T(n, 2) = A000295(n).

%F T(n, k) = S2(n-1, k) + Sum_{j=0..n-2} Sum_{d=0..k-1} (k-d-1)*T(n-j-1, k-d)*S2(j, d), where S2(n, k) is the Stirling number of the second kind.

%F Sum_{k = 1..n-1} T(n, k) = A074664(n). - _Philippe Deléham_, Jun 13 2004

%F G.f.: 1-1/(1+add(add(q^n t^k S2(n, k), k=1..n), n >= 1)) where S2(n, k) are the Stirling numbers of the 2nd kind A008277. - _Mike Zabrocki_, Sep 03 2005

%e T(2,1)=1 for {12};

%e T(3,1)=1, T(3,2) = 1 for {123}; {13|2};

%e T(4,1)=1, T(4,2)=4, T(4,3)=1 for {1234}; {14|23}, {13|24}, {124|3}, {134|2}; {14|2|3}.

%e From _Philippe Deléham_, Jul 16 2007: (Start)

%e Triangle begins:

%e 1;

%e 1, 1;

%e 1, 4, 1;

%e 1, 11, 9, 1;

%e 1, 26, 48, 16, 1;

%e 1, 57, 202, 140, 25, 1;

%e 1, 120, 747, 916, 325, 36, 1;

%e 1, 247, 2559, 5071, 3045, 651, 49, 1;

%e 1, 502, 8362, 25300, 23480, 8260, 1176, 64, 1;

%e 1, 1013, 26520, 117962, 159736, 84456, 19404, 1968, 81, 1;

%e ...

%e Triangle T(n,k), 0 <= k <= n, given by [1,0,2,0,3,0,4,0,...] DELTA [0,1,0,1,0,1,0,...] begins:

%e 1;

%e 1, 0;

%e 1, 1, 0;

%e 1, 4, 1, 0;

%e 1, 11, 9, 1, 0;

%e 1, 26, 48, 16, 1, 0;

%e 1, 57, 202, 140, 25, 1, 0;

%e 1, 120, 747, 916, 325, 36, 1, 0;

%e 1, 247, 2559, 5071, 3045, 651, 49, 1, 0;

%e 1, 502, 8362, 25300, 23480, 8260, 1176, 64, 1, 0;

%e 1, 1013, 26520, 117962, 159736, 84456, 19404, 1968, 81, 1, 0;

%e ...

%e (End)

%p A := proc(n,k) option remember; local j,ell; if n<=0 or k>=n then 0; elif k=1 or k=n-1 then 1; else S2(n-1,k)+add(add((k-ell-1)*A(n-j-1,k-ell)*S2(j,ell),ell=0..k-1),j=0..n-2); fi; end: S2 := (n,k)->if n<0 or k>n then 0; elif k=n or k=1 then 1 else k*S2(n-1,k)+S2(n-1,k-1); fi:

%t nmax = 12; t[n_, k_] := t[n, k] = StirlingS2[n-1, k] + Sum[ (k-d-1)*t[n-j-1, k-d]*StirlingS2[j, d], {d, 0, k-1}, {j, 0, n-2}]; Flatten[ Table[ t[n, k], {n, 2, nmax}, {k, 1, n-1}]] (* _Jean-François Alcover_, Oct 04 2011, after given formula *)

%o (SageMath)

%o @CachedFunction # T = A087903

%o def T(n,k): return stirling_number2(n-1, k) + sum( sum( (k-m-1)*T(n-j-1, k-m)*stirling_number2(j, m) for m in (0..k-1) ) for j in (0..n-2) )

%o flatten([[T(n, k) for k in (1..n-1)] for n in (2..14)]) # _G. C. Greubel_, Jun 21 2022

%Y Cf. A000110, A000295, A008277, A055106, A074664.

%Y Cf. A055105.

%K easy,nonn,tabl

%O 2,5

%A _Mike Zabrocki_, Oct 14 2003

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 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)