***************************************************************************** * www.FindStat.org - The Combinatorial Statistic Finder * * * * Copyright (C) 2019 The FindStatCrew * * * * This information is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * ***************************************************************************** ----------------------------------------------------------------------------- Statistic identifier: St001945 ----------------------------------------------------------------------------- Collection: Finite Cartan types ----------------------------------------------------------------------------- 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 [[St001155]] for the number of conjugacy classes of subgroups. ----------------------------------------------------------------------------- References: [1] [[oeis:A174511]] WARNING - could not verify link error fetching https://oeis.org/search?q=A174511&n=1&fmt=text [2] WARNING - could not verify link [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) ----------------------------------------------------------------------------- Statistic values: ['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 ----------------------------------------------------------------------------- Created: Apr 23, 2024 at 11:06 by Martin Rubey ----------------------------------------------------------------------------- Last Updated: Apr 23, 2024 at 11:33 by Martin Rubey