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.

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

This page as a plain text file.
%I A123691 #32 Jul 22 2023 12:39:13
%S A123691 1,3,21,210,2574,36036,554268,9145422,159352050,2900207310,
%T A123691 54698315490,1062710129520,21172455657360,431010704453400,
%U A123691 8939669081780520,188478023140872630,4031562420682009290,87350519114776867950,1914486941500560677250,42397183540866961907100
%N A123691 a(n) = number of standard Young tableaux of type (n,n-1,n-1).
%H A123691 Alois P. Heinz, <a href="/A123691/b123691.txt">Table of n, a(n) for n = 1..700</a>
%H A123691 Wolfgang Unger, <a href="http://arxiv.org/abs/1411.4493">Combinatorics of Lattice QCD at Strong Coupling</a>, arXiv:1411.4493 [hep-lat], 2014.
%F A123691 a(n) = 6*(3*n-2)! / (n!*(n-1)!*(n+2)!). - _Alois P. Heinz_, Apr 11 2012
%F A123691 n*(n+2)*a(n) - 3*(3*n-2)*(3*n-4)*a(n-1) = 0. - _R. J. Mathar_, Aug 10 2015
%F A123691 G.f.: x*3F2(1,2/3,4/3;2,4;27x). - _R. J. Mathar_, Aug 10 2015
%p A123691 a:= n-> 6 *(3*n-2)! / (n! *(n-1)! *(n+2)!):
%p A123691 seq(a(n), n=1..25); # _Alois P. Heinz_, Apr 11 2012
%t A123691 (* first do *) Needs["DiscreteMath`Combinatorica`"] (* then *) Table[ NumberOfTableaux@{n, n - 1, n - 1}, {n, 18}]
%Y A123691 Cf. A005789, A123555, subdiagonal of A065077.
%K A123691 nonn,easy
%O A123691 1,2
%A A123691 _Robert G. Wilson v_, Nov 15 2006