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.

A290202 Number of solid standard Young tableaux of cylindrical shape lambda X 3, where lambda ranges over all partitions of n.

This page as a plain text file.
%I A290202 #9 Jan 04 2023 21:08:03
%S A290202 1,1,10,276,14318,1214358,150910592,25454753376,5599142988564,
%T A290202 1557618719594808,532482249378122738,218108013886160729600,
%U A290202 105215894641522373026220,59025152558043462549357094,38095446968224172036448488814,27985301641485576224718954999962
%N A290202 Number of solid standard Young tableaux of cylindrical shape lambda X 3, where lambda ranges over all partitions of n.
%H A290202 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 A290202 Wikipedia, <a href="https://en.wikipedia.org/wiki/Young_tableau">Young tableau</a>
%p A290202 b:= proc(l) option remember; local m; m:= nops(l);
%p A290202       `if`({map(x-> x[], l)[]}minus{0}={}, 1, add(add(`if`(l[i][j]>
%p A290202       `if`(i=m or nops(l[i+1])<j, 0, l[i+1][j]) and l[i][j]>
%p A290202       `if`(nops(l[i])=j, 0, l[i][j+1]), b(subsop(i=subsop(
%p A290202        j=l[i][j]-1, l[i]), l)), 0), j=1..nops(l[i])), i=1..m))
%p A290202     end:
%p A290202 g:= proc(n, i, l) `if`(n=0 or i=1, b(map(x->[3$x], [l[], 1$n])),
%p A290202        add(g(n-i*j, i-1, [l[], i$j]), j=0..n/i))
%p A290202     end:
%p A290202 a:= n-> g(n$2, []):
%p A290202 seq(a(n), n=0..10);
%t A290202 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 A290202 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 A290202 a[n_] := g[n, n, 3, {}]; Table[a[n], {n, 0, 12}] (* _Jean-François Alcover_, Dec 28 2022, after _Alois P. Heinz_ in A215204 *)
%Y A290202 Column k=3 of A215204.
%K A290202 nonn
%O A290202 0,3
%A A290202 _Alois P. Heinz_, Jul 23 2017