You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Counting the number of "connected" permutation groups of degree `n`::
1584
1584
1585
-
sage: seq = [sum(1 for G in SymmetricGroup(n).conjugacy_classes_subgroups() if len(G.disjoint_direct_product_decomposition()) == 1) for n in range(1,8)]; seq
1585
+
sage: seq = [sum(1 for G in SymmetricGroup(n).conjugacy_classes_subgroups() if len(G.disjoint_direct_product_decomposition()) == 1) for n in range(1,8)]; seq # optional - internet
1586
1586
[1, 1, 2, 6, 6, 27, 20]
1587
1587
sage: oeis(seq) # optional -- internet
1588
1588
0: A005226: Number of atomic species of degree n; also number of connected permutation groups of degree n.
Copy file name to clipboardExpand all lines: src/sage/libs/gap/assigned_names.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,7 @@ def list_functions():
124
124
sage: 'SubdirectProduct' in FUNCTIONS # indirect doctest
125
125
True
126
126
"""
127
-
fnames=set(GLOBALS).difference(KEYWORDS)
127
+
fnames=set(GLOBALS)- {*KEYWORDS, 'AtlasOfGroupRepresentationsInfo'} # accessing the AtlasOfGroupRepresentationsInfo global variable requires internet access and will timeout if the server is down
0 commit comments