A298428 Numbers n such that there are precisely 10 groups of orders n and n + 1.
13914, 15974, 77234, 99126, 107205, 122675, 128894, 187473, 188265, 204134
Offset: 1
Examples
For n = 13914, A000001(13914) = A000001(13915) = 10. For n = 15974, A000001(15974) = A000001(15975) = 10. For n = 77234, A000001(77234) = A000001(77235) = 10.
Links
- H. U. Besche, B. Eick and E. A. O'Brien, A Millennium Project: Constructing Small Groups, Internat. J. Algebra and Computation, 12 (2002), 623-644.
- Gordon Royle, Numbers of Small Groups
- Index entries for sequences related to groups
Crossrefs
Programs
-
Maple
with(GroupTheory): for n from 1 to 10^5 do if [NumGroups(n), NumGroups(n+1)] = [10, 10] then print(n); fi; od;
Comments