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!)
A290214 Number of solid standard Young tableaux of cylindrical shape lambda X 4, where lambda ranges over all partitions of n. 1
1, 1, 28, 3740, 1161678, 741215012, 840790914296, 1439884504332480, 3576753835657635164, 12524266750764601753576, 59517682037036901339560926, 363169855509323114958694015304, 2774932810808589820997792848479674, 26216044235174202943266623056680424524 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
S. B. Ekhad and D. Zeilberger, Computational and Theoretical Challenges on Counting Solid Standard Young Tableaux, arXiv:1202.6229 [math.CO], 2012.
Wikipedia, Young tableau
MAPLE
b:= proc(l) option remember; local m; m:= nops(l);
`if`({map(x-> x[], l)[]}minus{0}={}, 1, add(add(`if`(l[i][j]>
`if`(i=m or nops(l[i+1])<j, 0, l[i+1][j]) and l[i][j]>
`if`(nops(l[i])=j, 0, l[i][j+1]), b(subsop(i=subsop(
j=l[i][j]-1, l[i]), l)), 0), j=1..nops(l[i])), i=1..m))
end:
g:= proc(n, i, l) `if`(n=0 or i=1, b(map(x->[4$x], [l[], 1$n])),
add(g(n-i*j, i-1, [l[], i$j]), j=0..n/i))
end:
a:= n-> g(n$2, []):
seq(a(n), n=0..8);
MATHEMATICA
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}]]];
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}]];
a[n_] := g[n, n, 4, {}];
Table[a[n], {n, 0, 10}] (* Jean-François Alcover, Dec 28 2022, after Alois P. Heinz in A215204 *)
CROSSREFS
Column k=4 of A215204.
Sequence in context: A291585 A242449 A201099 * A036525 A364516 A355999
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jul 24 2017
STATUS
approved

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 July 9 20:34 EDT 2024. Contains 374191 sequences. (Running on oeis4.)