cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A108410 Triangle T(n,k) read by rows: number of 12312-avoiding matchings on [2n] with exactly k crossings (n >= 1, 0 <= k <= n-1).

This page as a plain text file.
%I A108410 #32 Sep 24 2020 03:33:25
%S A108410 1,2,1,5,5,2,14,21,15,5,42,84,84,49,14,132,330,420,336,168,42,429,
%T A108410 1287,1980,1980,1350,594,132,1430,5005,9009,10725,9075,5445,2145,429,
%U A108410 4862,19448,40040,55055,55055,40898,22022,7865,1430,16796,75582
%N A108410 Triangle T(n,k) read by rows: number of 12312-avoiding matchings on [2n] with exactly k crossings (n >= 1, 0 <= k <= n-1).
%H A108410 Andrew Howroyd, <a href="/A108410/b108410.txt">Table of n, a(n) for n = 1..1275</a>
%H A108410 Alexander Burstein, Megan Martinez, <a href="https://permutationpatterns.com/files/2020/06/WednesdayA_Burstein.pdf">Pattern classes equinumerous to the class of ternary forests</a>, Permutation Patterns Virtual Workshop, Howard University (2020).
%H A108410 W. Y. C. Chen, T. Mansour and S. H. F. Yan, <a href="https://arxiv.org/abs/math/0504342">Matchings avoiding partial patterns</a>, arXiv:math/0504342 [math.CO], 2005.
%H A108410 W. Y. C. Chen, T. Mansour and S. H. F. Yan, <a href="http://www.combinatorics.org/ojs/index.php/eljc/article/view/v13i1r112">Matchings avoiding partial patterns</a>, The Electronic Journal of Combinatorics 13, 2006, #R112, Theorem 2.2.
%H A108410 D. S. Hough, <a href="http://www.combinatorics.org/ojs/index.php/eljc/article/view/v10i1n13">Descents in noncrossing trees</a>, Electronic J. Combinatorics 10 (2003), #N13, Theorem 2.2. [_Ira M. Gessel_, May 10 2010]
%F A108410 T(n, k) = Sum_{i=n..2*n-1} (-1)^(n+k+i)/i*C(i, n)*C(3*n, i+1+n)*C(i-n, k).
%F A108410 T(n,k) = C(n-1+k,n-1)*C(2*n-k,n+1)/n, (0 <= k <= n-1). [Chen et al.] - _Emeric Deutsch_, Dec 19 2006
%F A108410 O.g.f. equals the series reversion with respect to x of x*(1 + x*(1 - t))/(1 + x)^3. If R(n,t) is the n-th row polynomial of this triangle then R(n, 1+t) is the n-th row polynomial of A089434. - _Peter Bala_, Jul 15 2012
%e A108410 Triangle begins
%e A108410      1;
%e A108410      2,     1;
%e A108410      5,     5,     2;
%e A108410     14,    21,    15,     5;
%e A108410     42,    84,    84,    49,    14;
%e A108410    132,   330,   420,   336,   168,    42;
%e A108410    429,  1287,  1980,  1980,  1350,   594,   132;
%e A108410   1430,  5005,  9009, 10725,  9075,  5445,  2145,  429;
%e A108410   4862, 19448, 40040, 55055, 55055, 40898, 22022, 7865, 1430;
%p A108410 T:=(n,k)->binomial(n-1+k,n-1)*binomial(2*n-k,n+1)/n: for n from 1 to 10 do seq(T(n,k),k=0..n-1) od; # yields sequence in triangular form - _Emeric Deutsch_, Dec 19 2006
%t A108410 T[n_, k_] := Binomial[n + k - 1, n - 1]*Binomial[2*n - k, n + 1]/n;
%t A108410 Table[T[n, k], {n, 1, 10}, {k, 0, n - 1}] // Flatten (* _Jean-François Alcover_, Nov 11 2017, after _Emeric Deutsch_ *)
%o A108410 (PARI) T(n,k) = binomial(n-1+k, n-1)*binomial(2*n-k, n+1)/n; \\ _Andrew Howroyd_, Nov 06 2017
%Y A108410 Left-hand columns include A000108 and A002054. Right-hand columns include A000108 and A007851+1. Row sums are A001764. A089434.
%K A108410 nonn,tabl
%O A108410 1,2
%A A108410 _Ralf Stephan_, Jun 03 2005