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!)
A126102 Number of pointed groups of order n: that is, Sum_{G = group of order n} Number of conjugacy classes in G. 2
1, 2, 3, 8, 5, 9, 7, 34, 18, 14, 11, 40, 13, 19, 15, 161, 17, 57, 19, 61, 26, 29, 23, 197, 50, 34, 103, 76, 29, 66, 31, 912, 33, 44, 35, 267, 37, 49, 46, 293, 41, 107, 43, 116, 90, 59, 47, 1096, 98, 148, 51, 143, 53, 371, 62, 377, 66, 74, 59, 325, 61, 79, 156, 7068 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Number of pairs (G, g in G) for G a group of order n.
This has the same relation to A000001 (groups) as A000081 (pointed trees, also called rooted trees) does to trees (A000055).
LINKS
PROG
(Magma) SmallGroupDatabase();
for o in [1..64] do
t1:=0;
t2:=NumberOfSmallGroups(o);
for n in [1..t2] do
G:=Group(o, n);
t1:=t1 + #ConjugacyClasses(G);
end for;
print(t1);
end for;
(Magma) D:=SmallGroupDatabase(); [ &+[ #ConjugacyClasses(Group(D, o, n)): n in [1..NumberOfSmallGroups(D, o)] ]: o in [1..64] ]; /* Klaus Brockhaus, Mar 06 2007 */
CROSSREFS
Cf. A000001 (groups). See A126103 for a different and better version.
Sequence in context: A154760 A231817 A114340 * A011433 A349824 A332221
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 06 2007
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)