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.

A181197 Number of 3 X n matrices containing a permutation of 1..3*n in increasing order rowwise, columnwise and (downwards) antidiagonally.

Original entry on oeis.org

1, 1, 4, 29, 290, 3532, 49100, 750325, 12310294, 213446666, 3868253164, 72686739116, 1407643591804, 27964937748724, 567853691242796, 11751537336221989, 247263499985110046, 5279409371079693454, 114199628255736623996, 2499214354674134770354
Offset: 1

Views

Author

R. H. Hardin, Oct 10 2010

Keywords

Comments

Row 3 of A181196.
Equivalently, the number of "truncated shifted standard Young tableaux" of shape ; in other words, if we shift the middle row to the right by one unit and the bottom row to the right by two units, we require that the resulting diagram be increasing as we read down or to the right.
To count these tableaux, observe that if we put the entry 2n + 2 + k in the last position of the second row, the bottom row must end with the entries 2n + 3 + k, ..., 3n. The remaining figure can be filled in arbitrarily; it is a shifted Young diagram of shape . Now apply the hook-length formula for shifted Young tableaux. (This argument is due to Greta Panova.)
a(n) is also the number of maximum packings of pattern
[5 6]
[3 4]
[1 2] in column-strict arrays of size 3 X n+1. - Ran Pan, Apr 13 2015
a(n) is also the number of standard Young tableaux of shape (n,n,n) (French notation) such that for any element T(i,j) in the tableau T, its upper element T(i+1,j) is larger than its right element T(i,j+1). - Ran Pan, Apr 13 2015

Examples

			All four 3 X 3 examples:
1..2..3....1..2..3....1..2..4....1..2..4
4..5..6....4..5..7....3..5..6....3..5..7
7..8..9....6..8..9....7..8..9....6..8..9
		

Crossrefs

Row n=3 of A227578. - Alois P. Heinz, Jul 17 2013

Programs

  • Maple
    a:= n-> `if`(n<2, 1, add(((2*n+k-1)!*(n-k)*(n-k-1)) /
             (n!*(n-1)!*k!*(2*n-1)*(n+k)*(n+k-1)), k=0..n-2)):
    seq(a(n), n=1..30);  # Alois P. Heinz, Jul 01 2012
  • Mathematica
    Flatten[{1,Table[Sum[((2*n+k-1)!*(n-k)*(n-k-1))/(n!*(n-1)!*k!*(2*n-1)*(n+k)*(n+k-1)),{k,0,n-2}],{n,2,20}]}] (* Vaclav Kotesovec, Jul 21 2013 *)

Formula

a(n) = Sum_{k=0..n-2} ((2n+k-1)!*(n-k)*(n-k-1)) / (n!*(n-1)!*k!*(2n-1) * (n+k)*(n+k-1)) for n>=2, a(1) = 1.
Recurrence: (2*n-1)*(7*n-13)*n^2*a(n) = 2*(182*n^4 - 1185*n^3 + 2722*n^2 - 2625*n + 900)*a(n-1) + 3*(2*n-5)*(3*n-5)*(3*n-4)*(7*n-6)*a(n-2). - Vaclav Kotesovec, Jul 21 2013
a(n) ~ 3^(3*n+1/2)/(64*Pi*n^4). - Vaclav Kotesovec, Jul 21 2013

Extensions

Formula and comments from Joel B. Lewis, Jul 25 2011