[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A363701
Numbers k with the property that the character table of S_k contains a zero in every nontrivial column.
2
0, 1, 5, 6, 8, 9, 10, 12, 14, 17, 21, 28, 30, 32, 34, 36, 37
OFFSET
1,3
COMMENTS
This sequence contains A363675 and A363676.
PROG
(Sage)
def zeros(n):
G = SymmetricGroup(n)
N = G.character_table()
for j in range(1, N.ncols()):
if 0 not in N[:, j]:
return False
j+=1
return True
n=1
while n>0:
if zeros(n) == True:
print(n)
n+=1
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Diego Martin Duro, Jun 16 2023
STATUS
approved