OFFSET
1,3
PROG
(Sage)
k=39 # Find integer sequence up to this value
S=set()
L=set()
for n in IntegerRange(0, k):
G = SymmetricGroup(n)
C = G.conjugacy_classes()
c = len(C)
N = G.character_table()
for j in IntegerRange(1, c):
if 0 not in N[:, j]:
S.add(n)
break
for n in IntegerRange(0, k):
if n not in S:
L.add(n)
print(L)
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Diego Martin Duro, Jun 16 2023
STATUS
approved