Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)

Revision History for A219275

(Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A219275 Number of standard Young tableaux for partitions of nonnegative integers into distinct parts with largest part n.
(history; published version)
#19 by Michael De Vlieger at Wed Nov 02 14:45:12 EDT 2022
STATUS

reviewed

approved

#18 by Michel Marcus at Wed Nov 02 14:04:23 EDT 2022
STATUS

proposed

reviewed

#17 by Jean-François Alcover at Wed Nov 02 12:03:15 EDT 2022
STATUS

editing

proposed

#16 by Jean-François Alcover at Wed Nov 02 12:03:08 EDT 2022
MATHEMATICA

h[l_] := With[{n = Length[l]}, Total[l]!/Product[ Product[1 + l[[i]] - j + Sum[If[l[[k]] >= j, 1, 0], {k, i + 1, n}], {j, 1, l[[i]]}], {i, 1, n}]];

b[n_, l_] := If[n < 1, h[l], b[n - 1, l] + b[n - 1, Append[l, n]]];

a[n_] := If[n == 0, 1, b[n - 1, {n}]];

Table[a[n], {n, 0, 12}] (* Jean-François Alcover, Nov 02 2022, after Alois P. Heinz *)

STATUS

approved

editing

#15 by Alois P. Heinz at Wed Feb 08 19:58:36 EST 2017
STATUS

editing

approved

#14 by Alois P. Heinz at Wed Feb 08 19:58:31 EST 2017
LINKS

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

STATUS

approved

editing

#13 by Alois P. Heinz at Thu Oct 30 22:04:47 EDT 2014
STATUS

editing

approved

#12 by Alois P. Heinz at Thu Oct 30 22:04:44 EDT 2014
MAPLE

add (`(`if`(l[k]>=j, 1, 0), k=i+1..n), j=1..l[i]), i=1..n)

seq ((a(n), n=0..12);

STATUS

approved

editing

#11 by Alois P. Heinz at Sat Nov 17 08:04:33 EST 2012
STATUS

editing

approved

#10 by Alois P. Heinz at Sat Nov 17 04:51:01 EST 2012
LINKS

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

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

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 September 11 10:43 EDT 2024. Contains 375827 sequences. (Running on oeis4.)