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!)
A296166 Numbers n such that the number of groups of order n exceeds the sum of divisors of n. 1
64, 128, 192, 256, 288, 320, 384, 448, 512, 576, 640, 768, 864, 896, 960, 1024, 1152, 1280, 1344, 1408, 1440, 1536, 1600, 1664, 1728, 1792, 1920, 2048, 2112, 2176, 2187 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
It seems that 1 is the only number such that the number of groups equals the sum of the divisors and that for almost all numbers the sum of the divisors exceeds the number of groups.
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, June 2000.
FORMULA
Sequence is { n | A000001(n) > A000203(n) }.
EXAMPLE
64 is in the sequence because 267 = A000001(64) > A000203(64) = 127.
128 is in the sequence because 2328 = A000001(128) > A000203(128) = 255.
1920 is in the sequence because 241004 = A000001(1920) > A000203(1920) = 6120.
MAPLE
with(GroupTheory): with(numtheory):
for n from 1 to 2047 do if NumGroups(n) > sigma(n) then print(n); fi; od;
MATHEMATICA
Select[Range[10^4], FiniteGroupCount[#] > DivisorSigma[1, #] &] (* Amiram Eldar, Feb 19 2019 *)
PROG
(GAP) A296166 := Filtered([1..2015], n -> NumberSmallGroups(n) > Sigma(n));
CROSSREFS
Subsequence of A090052.
Sequence in context: A324487 A258001 A255996 * A355265 A044187 A152691
KEYWORD
nonn,more
AUTHOR
Muniru A Asiru, Dec 06 2017
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 16 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)