OFFSET
1,8
COMMENTS
A finite non-Abelian group G has an irreducible representation of degree >= 2 and the character of such representation always has a zero; so a(n) = 0 iff every group of order n is Abelian, i.e. n belongs to A051532.
LINKS
Eric M. Schmidt, Table of n, a(n) for n = 1..1023
EXAMPLE
a(6) = 1 because the character table of the symmetric group S_3 is / 1, 1, 1 / 1, 1, -1 / 2, -1, 0 /.
PROG
(GAP) A061064 := function(n) local max, i; max := 0; for i in [1..NumberSmallGroups(n)] do max := Maximum(max, Sum(Irr(SmallGroup(n, i)), chi->Number(chi, x->x=0))); od; return max; end; # Eric M. Schmidt, Aug 24 2012
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
Ahmed Fares (ahmedfares(AT)my-deja.com), Jun 05 2001
EXTENSIONS
Added terms a(n) for n>=24, Eric M. Schmidt, Aug 24 2012.
STATUS
approved