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!)
A290274 Number of solid standard Young tableaux of cylindrical shape lambda X 5, where lambda ranges over all partitions of n. 1

%I #9 Jan 04 2023 21:09:21

%S 1,1,84,58604,118316062,620383261034,7137345113624878,

%T 136938419662960675110,4248619239382421064760418,

%U 208764720295510001353706916224,15549729565895424021059338656785142,1588531886834159978895386134546068562294,215569983507625108792605406075783194767331496

%N Number of solid standard Young tableaux of cylindrical shape lambda X 5, where lambda ranges over all partitions of n.

%H S. B. Ekhad and D. Zeilberger, <a href="https://arxiv.org/abs/1202.6229">Computational and Theoretical Challenges on Counting Solid Standard Young Tableaux</a>, arXiv:1202.6229 [math.CO], 2012.

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Young_tableau">Young tableau</a>

%p b:= proc(l) option remember; local m; m:= nops(l);

%p `if`({map(x-> x[], l)[]}minus{0}={}, 1, add(add(`if`(l[i][j]>

%p `if`(i=m or nops(l[i+1])<j, 0, l[i+1][j]) and l[i][j]>

%p `if`(nops(l[i])=j, 0, l[i][j+1]), b(subsop(i=subsop(

%p j=l[i][j]-1, l[i]), l)), 0), j=1..nops(l[i])), i=1..m))

%p end:

%p g:= proc(n, i, l) `if`(n=0 or i=1, b(map(x->[5$x], [l[], 1$n])),

%p add(g(n-i*j, i-1, [l[], i$j]), j=0..n/i))

%p end:

%p a:= n-> g(n$2, []):

%p seq(a(n), n=0..8);

%t b[l_] := b[l] = With[{m = Length[l]}, If[Union[l // Flatten] ~Complement~ {0} == {}, 1, Sum[Sum[If[l[[i, j]] > If[i == m || Length[l[[i + 1]]] < j, 0, l[[i + 1, j]]] && l[[i, j]] > If[Length[l[[i]]] == j, 0, l[[i, j + 1]]], b[ReplacePart[l, i -> ReplacePart[l[[i]], j -> l[[i, j]] - 1]]], 0], {j, 1, Length[l[[i]]]}], {i, 1, m}]]];

%t g[n_, i_, k_, l_] := If[n == 0 || i == 1, b[Table[k, {#}] & /@ Join[l, Table[1, {n}]]], Sum[g[n - i*j, i - 1, k, Join[l, Table[i, {j}]]], {j, 0, n/i}]];

%t a[n_] := g[n, n, 5, {}];

%t Table[a[n], {n, 0, 9}] (* _Jean-François Alcover_, Dec 28 2022, after _Alois P. Heinz_ in A215204 *)

%Y Column k=5 of A215204.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Jul 25 2017

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 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)