OFFSET
1,5
COMMENTS
The maximal value in the character table is the maximal degree of an irreducible representation of S_n and this is in sequence A003040.
LINKS
Eric M. Schmidt, Table of n, a(n) for n = 1..35
EXAMPLE
a(3) = -1 because the character table of S_3 is / 1 1 1 / 1 1 -1 / 2 -1 0 /.
MAPLE
seq(min(map(op, [entries(combinat:-character(n))])), n=1..23); # Robert Israel, Mar 31 2016
MATHEMATICA
a[n_] := With[{S = "S" <> ToString[n]}, FiniteGroupData[S, "CharacterTable"] // Flatten // Min]; Array[a, 10] (* Jean-François Alcover, Mar 31 2016 *)
PROG
(GAP) A061220 := n -> Minimum(List(Irr(CharacterTable("Symmetric", n)), Minimum)); # Eric M. Schmidt, Feb 18 2013
CROSSREFS
KEYWORD
sign,nice
AUTHOR
Ola Veshta (olaveshta(AT)my-deja.com), May 30 2001
EXTENSIONS
Corrected and extended by Vladeta Jovovic, May 20 2003
More terms from Eric M. Schmidt, Feb 18 2013
STATUS
approved