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.

Showing 1-1 of 1 results.

A123691 a(n) = number of standard Young tableaux of type (n,n-1,n-1).

Original entry on oeis.org

1, 3, 21, 210, 2574, 36036, 554268, 9145422, 159352050, 2900207310, 54698315490, 1062710129520, 21172455657360, 431010704453400, 8939669081780520, 188478023140872630, 4031562420682009290, 87350519114776867950, 1914486941500560677250, 42397183540866961907100
Offset: 1

Views

Author

Robert G. Wilson v, Nov 15 2006

Keywords

Crossrefs

Cf. A005789, A123555, subdiagonal of A065077.

Programs

  • Maple
    a:= n-> 6 *(3*n-2)! / (n! *(n-1)! *(n+2)!):
    seq(a(n), n=1..25); # Alois P. Heinz, Apr 11 2012
  • Mathematica
    (* first do *) Needs["DiscreteMath`Combinatorica`"] (* then *) Table[ NumberOfTableaux@{n, n - 1, n - 1}, {n, 18}]

Formula

a(n) = 6*(3*n-2)! / (n!*(n-1)!*(n+2)!). - Alois P. Heinz, Apr 11 2012
n*(n+2)*a(n) - 3*(3*n-2)*(3*n-4)*a(n-1) = 0. - R. J. Mathar, Aug 10 2015
G.f.: x*3F2(1,2/3,4/3;2,4;27x). - R. J. Mathar, Aug 10 2015
Showing 1-1 of 1 results.