login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A363701 Numbers k with the property that the character table of S_k contains a zero in every column. 2
0, 1, 5, 6, 8, 9, 10, 12, 14, 17, 21, 28, 30, 32, 34, 36, 37, 38 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
This sequence contains A363675 and A363676.
LINKS
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
Sequence in context: A057854 A033266 A355641 * A353193 A102408 A240564
KEYWORD
nonn,more,hard
AUTHOR
Diego Martin Duro, Jun 16 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 11 19:17 EDT 2024. Contains 375073 sequences. (Running on oeis4.)