login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A212916 Number of standard Young tableaux of n cells and height <= 10. 3
1, 1, 2, 4, 10, 26, 76, 232, 764, 2620, 9496, 35695, 140140, 568360, 2389192, 10338315, 46118592, 211120144, 992316928, 4773362476, 23500234512, 118125854560, 606106812640, 3168660576795, 16872323635132, 91369920670420, 503022250919640, 2811920834508705 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,3

COMMENTS

Number of standard Young tableaux of n cells and <= 10 columns.

Also the number of n-length words w over 10-ary alphabet {a1,a2,...,a10} such that for every prefix z of w we have #(z,a1) >= #(z,a2) >= ... >= #(z,a10), where #(z,x) counts the number of letters x in word z.

LINKS

Alois P. Heinz, Table of n, a(n) for n = 0..400

MAPLE

h:= proc(l) local n; n:=nops(l); add(i, i=l)! /mul (mul (1+l[i]-j+

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

    end:

g:= proc(n, i, l) option remember;

      `if`(n=0, h(l), `if`(i=1, h([l[], 1$n]), `if`(i<1, 0,

        g(n, i-1, l) +`if`(i>n, 0, g(n-i, i, [l[], i])))))

    end:

a:= n-> g(n, 10, []):

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

# second Maple program

a:= proc(n) option remember;

      `if`(n<6, [1, 1, 2, 4, 10, 26][n+1],

      ((70*n^4+4144*n^3+84986*n^2+685800*n+1656000)*a(n-1)

       +4*(n-1)*(35*n^4+1778*n^3+30106*n^2+184221*n+244350)*a(n-2)

       -8*(n-1)*(n-2)*(518*n^2+11916*n+59265)*a(n-3)

       -16*(n-1)*(n-2)*(n-3)*(259*n^2+4819*n+17355)*a(n-4)

       +21600*(n-1)*(n-2)*(n-3)*(n-4)*a(n-5)

       +14400*(n-5)*(n-1)*(n-2)*(n-3)*(n-4)*a(n-6)) /

       ((n+21)*(n+9)*(n+16)*(n+25)*(n+24)))

    end:

seq (a(n), n=0..30);  # Alois P. Heinz, Oct 12 2012

CROSSREFS

Column k=10 of A182172.

Sequence in context: A007578 A007580 A212915 * A000085 A222319 A047653

Adjacent sequences:  A212913 A212914 A212915 * A212917 A212918 A212919

KEYWORD

nonn

AUTHOR

Alois P. Heinz, May 30 2012

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 18 16:23 EDT 2013. Contains 225422 sequences.