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!)
A263776 Triangle read by rows: T(n,k) (n>=0, 0<=k<=A002620(n-1)) is the number of permutations of [n] with k nestings. 15

%I #60 Jul 16 2021 08:35:27

%S 1,1,2,5,1,14,8,2,42,45,25,7,1,132,220,198,112,44,12,2,429,1001,1274,

%T 1092,700,352,140,42,9,1,1430,4368,7280,8400,7460,5392,3262,1664,716,

%U 256,74,16,2,4862,18564,38556,56100,63648,59670,47802,33338,20466,11115

%N Triangle read by rows: T(n,k) (n>=0, 0<=k<=A002620(n-1)) is the number of permutations of [n] with k nestings.

%C Row sums give A000142.

%C First column gives A000108.

%C Also the number of permutations of [n] with k crossings (see Corteel, Proposition 4).

%C Also the number of permutations of [n] with exactly k (possibly overlapping) occurrences of the generalized pattern 13-2 (alternatively: 2-13, 2-31, or 31-2). - _Alois P. Heinz_, Nov 14 2015

%H Alois P. Heinz, <a href="/A263776/b263776.txt">Rows n = 0..50, flattened</a>

%H A. Claesson and T. Mansour, <a href="http://arxiv.org/abs/math/0110036">Counting occurrences of a pattern of type (1,2) or (2,1) in permutations</a>, arXiv:math/0110036 [math.CO], 2001.

%H S. Corteel, <a href="http://dx.doi.org/10.1016/j.aam.2006.01.006">Crossings and alignments of permutations</a>, Adv. Appl. Math 38 (2007) 149-163.

%H FindStat - Combinatorial Statistic Finder, <a href="http://www.findstat.org/StatisticsDatabase/St000223">The number of nestings of a permutation</a>, <a href="http://www.findstat.org/StatisticsDatabase/St000039">The number of crossings of a permutation</a>

%H R. Parviainen, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL9/Parviainen/parviainen3.html">Lattice Path Enumeration of Permutations with k Occurrences of the Pattern 2-13</a>, Journal of Integer Sequences, Vol. 9 (2006), Article 06.3.2.

%H Lucas Sá and Antonio M. García-García, <a href="https://arxiv.org/abs/2104.07647">The Wishart-Sachdev-Ye-Kitaev model: Q-Laguerre spectral density and quantum chaos</a>, arXiv:2104.07647 [hep-th], 2021.

%F Sum_{k>0} k * T(n,k) = A001754(n).

%F T(n,n) = A287328(n). - _Alois P. Heinz_, Aug 31 2017

%e Triangle begins:

%e 0 : 1;

%e 1 : 1;

%e 2 : 2;

%e 3 : 5, 1;

%e 4 : 14, 8, 2;

%e 5 : 42, 45, 25, 7, 1;

%e 6 : 132, 220, 198, 112, 44, 12, 2;

%e 7 : 429, 1001, 1274, 1092, 700, 352, 140, 42, 9, 1;

%e ...

%p b:= proc(u, o) option remember;

%p `if`(u+o=0, 1, add(b(u-j, o+j-1), j=1..u)+

%p add(expand(b(u+j-1, o-j)*x^(j-1)), j=1..o))

%p end:

%p T:= n-> (p-> seq(coeff(p, x, i), i=0..degree(p)))(b(n, 0)):

%p seq(T(n), n=0..10); # _Alois P. Heinz_, Nov 14 2015

%t b[u_, o_] := b[u, o] = If[u+o == 0, 1, Sum[b[u-j, o+j-1], {j, 1, u}] + Sum[Expand[b[u+j-1, o-j]*x^(j-1)], {j, 1, o}]]; T[n_] := Function[p, Table[Coefficient[p, x, i], {i, 0, Exponent[p, x]}]][b[n, 0]]; Table[ T[n], {n, 0, 10}] // Flatten (* _Jean-François Alcover_, Jan 31 2016, after _Alois P. Heinz_ *)

%Y Columns k=0-10 give: A000108, A002696, A094218, A094219, A120812, A120813, A120814, A120815, A120816, A264496, A264497.

%Y Cf. A000142, A001754, A002620, A260665, A260670, A287328, A291722.

%K nonn,tabf

%O 0,3

%A _Christian Stump_, Oct 26 2015

%E More terms from _Alois P. Heinz_, Oct 26 2015

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