edit this statistic or download as text // json
Identifier
Values
=>
Cc0022;cc-rep
['A',1]=>2 ['A',2]=>4 ['B',2]=>5 ['G',2]=>7 ['A',3]=>9 ['B',3]=>16 ['C',3]=>16 ['A',4]=>16 ['B',4]=>54 ['C',4]=>54 ['D',4]=>27 ['F',4]=>78 ['A',5]=>29 ['B',5]=>140 ['C',5]=>140 ['D',5]=>78 ['A',6]=>55 ['A',7]=>137 ['A',8]=>241 ['A',9]=>453 ['A',10]=>894 ['A',11]=>2065 ['A',12]=>3845
search for individual values
searching the database for the individual values of this statistic
/ search for generating function
searching the database for statistics with the same generating function
click to show known generating functions       
Description
The number of non-isomorphic subgroups of the Weyl group of a finite Cartan type.
This statistic returns the number of non-isomorphic abstract groups.
See St001155The number of conjugacy classes of subgroups of the Weyl group of given type. for the number of conjugacy classes of subgroups.
References
[1] oeis:A174511
WARNING - could not verify link <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)>
error fetching oeis.org/search?q=A174511&n=1&fmt=text [2] WARNING - could not verify link <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)>
[3] error fetching https://oeis.org/search?q=A174511&n=1&fmt=text
Code
def statistic(ct):
    l = []
    for H in WeylGroup(ct).conjugacy_classes_subgroups():
        if not any(F.is_isomorphic(H) for F in l):
            l.append(H)
    return len(l)

Created
Apr 23, 2024 at 11:06 by Martin Rubey
Updated
Apr 23, 2024 at 11:33 by Martin Rubey