A295992 Numbers k such that there are precisely 6 groups of orders k and k + 1.
506, 4718, 6909, 32474, 32585, 39225, 46598, 47937
Offset: 1
Examples
506 is in the sequence because A000001(506) = A000001(507) = 6, 4718 is in the sequence because A000001(4718) = A000001(4719) = 6 and 32585 is in the sequence because A000001(32585) = A000001(32586) = 6.
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
Programs
-
Mathematica
Select[Range[10^6], (FiniteGroupCount[#] == 6 && FiniteGroupCount[# + 1] == 6) &] (* Due to a limit in Mathematica, some numbers >2047 cannot be evaluated. *) (* Robert Price, May 23 2019 *)
Comments