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.

Showing 1-5 of 5 results.

A003040 Highest degree of an irreducible representation of symmetric group S_n of degree n.

Original entry on oeis.org

1, 1, 2, 3, 6, 16, 35, 90, 216, 768, 2310, 7700, 21450, 69498, 292864, 1153152, 4873050, 16336320, 64664600, 249420600, 1118939184, 5462865408, 28542158568, 117487079424, 547591590000, 2474843571200, 12760912164000, 57424104738000, 295284192952320
Offset: 1

Views

Author

Keywords

Comments

Highest number of standard tableaux of the Ferrers diagrams of the partitions of n. Example: a(4) = 3 because to the partitions 4, 31, 22, 211, and 1111 there correspond 1, 3, 2, 3, and 1 standard tableaux, respectively. - Emeric Deutsch, Oct 02 2015

Examples

			a(5) = 6 because the degrees for S_5 are 1,1,4,4,5,5,6.
		

References

  • J. H. Conway, R. T. Curtis, S. P. Norton, R. A. Parker and R. A. Wilson, ATLAS of Finite Groups. Oxford Univ. Press, 1985 [for best online version see https://oeis.org/wiki/Welcome#Links_to_Other_Sites].
  • D. E. Littlewood, The Theory of Group Characters and Matrix Representations of Groups. 2nd ed., Oxford University Press, 1950, p. 265.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

A117500 gives the corresponding partitions of n.

Programs

  • 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}]];
    g[n_, i_, l_] := If[n == 0 || i == 1, h[Join[l, Array[1 &, n]]], If[i < 1, 0, Flatten@ Table[g[n - i*j, i - 1, Join[l, Array[i&, j]]], {j, 0, n/i}]]];
    a[n_] := a[n] = g[n, n, {}] // Max;
    Table[Print[n, " ", a[n]]; a[n], {n, 1, 50}] (* Jean-François Alcover, Sep 23 2024, after Alois P. Heinz in A060240 *)
  • Sage
    def A003040(n):
        res = 1
        for P in Partitions(n):
            res = max(res, P.dimension())
        return res
    # Eric M. Schmidt, May 07 2013

Extensions

Entry revised and extended by N. J. A. Sloane, Apr 28 2006
a(29) corrected by Eric M. Schmidt, May 07 2013

A003877 Degrees of irreducible representations of symmetric group S_13.

Original entry on oeis.org

1, 1, 12, 12, 65, 65, 66, 66, 208, 208, 220, 220, 429, 429, 429, 429, 429, 429, 495, 495, 572, 572, 792, 792, 924, 936, 936, 1287, 1287, 1365, 1365, 1430, 1430, 2574, 2574, 2574, 2574, 2860, 2860, 3003, 3003, 3432, 3432, 3432, 3432, 3432, 3432, 3575, 3575, 3640, 3640, 4004, 4004, 4212, 4212, 4290, 4290, 5005, 5005, 5148, 5148, 5720, 5720, 6006, 6006, 6435, 6435, 6864, 6864, 7371, 7371, 7800, 7800, 8580, 8580, 8580, 9009, 9009, 9360, 9360, 10296, 10296, 11440, 11440, 11583, 11583, 12012, 12012, 12012, 12012, 12870, 12870, 15015, 15015, 16016, 17160, 17160, 20592, 20592, 21450, 21450
Offset: 1

Views

Author

Keywords

Comments

All 101 terms of this finite sequence are shown.

References

  • J. H. Conway, R. T. Curtis, S. P. Norton, R. A. Parker and R. A. Wilson, ATLAS of Finite Groups. Oxford Univ. Press, 1985 [for best online version see https://oeis.org/wiki/Welcome#Links_to_Other_Sites].

Crossrefs

Row n=13 of A060240.

Programs

  • GAP
    A003877 := List(Irr(CharacterTable("S13")), chi->chi[1]);; Sort(A003877); # Eric M. Schmidt, Jul 18 2012
  • Magma
    // See A003875 for Magma code.
    
  • 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}]];
    g[n_, i_, l_] := If[n == 0 || i == 1, h[Join[l, Array[1&, n]]], If[i < 1, 0, Flatten@ Table[g[n - i*j, i - 1, Join[l, Array[i &, j]]], {j, 0, n/i}]]];
    T[n_] := g[n, n, {}];
    Sort[T[13]] (* Jean-François Alcover, Sep 23 2024, after Alois P. Heinz in A060240 *)

Extensions

More terms from Emeric Deutsch, May 13 2004

A097522 Triangle read by rows giving the 246 multinomials described by A005651(5) related to Young tableau and Kostka numbers.

Original entry on oeis.org

1, 16, 1, 25, 12, 1, 36, 15, 8, 1, 25, 18, 10, 8, 1, 16, 10, 6, 5, 4, 1, 1, 4, 5, 6, 5, 4, 1
Offset: 1

Views

Author

Alford Arnold, Aug 27 2004

Keywords

Comments

The antidiagonal 1 4 5 6 5 4 1 is also listed in A007837 in ascending order by value: 1 1 4 4 5 5 6. The 246 cases are distributed in A036038 as 1 5 10 20 30 60 120.

Examples

			Triangle is
   1;
  16,  1;
  25, 12,  1;
  36, 15,  8,  1;
  25, 18, 10,  8,  1;
  16, 10,  6,  5,  4,  1;
   1,  4,  5,  6,  5,  4,  1;
		

References

  • R. Stanton, Constructive Combinatorics, 19856, page 83.

Crossrefs

A059796 Degrees of irreducible representations of symmetric group S_14.

Original entry on oeis.org

1, 1, 13, 13, 77, 77, 78, 78, 273, 273, 286, 286, 429, 429, 560, 560, 637, 637, 715, 715, 1001, 1001, 1001, 1001, 1287, 1287, 1365, 1365, 1716, 1716, 2002, 2002, 2079, 2079, 4368, 4368, 4576, 4576, 4928, 4928, 5733, 5733, 6006, 6006, 6006, 6006, 6006, 6006, 6435
Offset: 1

Views

Author

N. J. A. Sloane, Feb 22 2001

Keywords

References

  • J. H. Conway, R. T. Curtis, S. P. Norton, R. A. Parker and R. A. Wilson, ATLAS of Finite Groups. Oxford Univ. Press, 1985 [for best online version see https://oeis.org/wiki/Welcome#Links_to_Other_Sites].

Crossrefs

Row n=14 of A060240.

Programs

  • GAP
    List(Irr(CharacterTable("S14")), chi->chi[1]); # Eric M. Schmidt, Jul 18 2012
  • Magma
    // See A003875 for MAGMA code.
    
  • 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:= (n, i, l)-> `if`(n=0 or i=1, h([l[], 1$n]), `if`(i<1, 0,
                     seq(g(n-i*j, i-1, [l[], i$j]), j=0..n/i))):
    sort([g(14$2, [])])[];  # Alois P. Heinz, Sep 23 2024
  • 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}]];
    g[n_, i_, l_] := If[n == 0 || i == 1, h[Join[l, Array[1&, n]]], If[i < 1, 0, Flatten@ Table[g[n - i*j, i - 1, Join[l, Array[i&, j]]], {j, 0, n/i}]]];
    T[n_] := g[n, n, {}];
    Sort[T[14]] (* Jean-François Alcover, Sep 23 2024, after Alois P. Heinz *)

A093716 Hook products of all partitions of 5.

Original entry on oeis.org

20, 24, 24, 30, 30, 120, 120
Offset: 1

Views

Author

Emeric Deutsch, May 17 2004

Keywords

Crossrefs

Row n=5 of A093784.

Programs

  • Maple
    H:=proc(pa) local F,j,p,Q,i,col,a,A: F:=proc(x) local i, ct: ct:=0: for i from 1 to nops(x) do if x[i]>1 then ct:=ct+1 else fi od: ct; end: for j from 1 to nops(pa) do p[1][j]:=pa[j] od: Q[1]:=[seq(p[1][j],j=1..nops(pa))]: for i from 2 to pa[1] do for j from 1 to F(Q[i-1]) do p[i][j]:=Q[i-1][j]-1 od: Q[i]:=[seq(p[i][j],j=1..F(Q[i-1]))] od: for i from 1 to pa[1] do col[i]:=[seq(Q[i][j]+nops(Q[i])-j,j=1..nops(Q[i]))] od: a:=proc(i,j) if i<=nops(Q[j]) and j<=pa[1] then Q[j][i]+nops(Q[j])-i else 1 fi end: A:=matrix(nops(pa),pa[1],a): product(product(A[m,n],n=1..pa[1]),m=1..nops(pa)); end: with(combinat): rev:=proc(a) [seq(a[nops(a)+1-i],i=1..nops(a))] end: sort([seq(H(rev(partition(5)[q])), q=1..numbpart(5))]);
  • 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}]];
    g[n_, i_, l_] := If[n == 0 || i == 1, h[Join[l, Array[1&, n]]], If[i < 1, 0, Flatten@Table[g[n - i*j, i - 1, Join[l, Array[i&, j]]], {j, 0, n/i}]]];
    T[n_] := g[n, n, {}];
    Sort[5!/T[5]] (* Jean-François Alcover, Aug 12 2024, after Alois P. Heinz in A060240 *)

Formula

a(n) = 5!/A003869(8-n).
Showing 1-5 of 5 results.