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!)
A173669 Numbers k which divide number of groups of order <= k (A063756). 1

%I #14 Mar 27 2024 21:06:06

%S 1,2,3,12,26,31,84,119,248,1107,1543,1683

%N Numbers k which divide number of groups of order <= k (A063756).

%C No other terms up to 2047. - _Eric M. Schmidt_, Feb 10 2013

%F {k: k | A063756(k)} == {k: k | SUM[i=1..k] A000001(i)}.

%e a(1) = 1 because 1 divides (the number of groups of order <= 1) = (number of groups of order 1) = 1.

%e a(4) = 12 because 12 divides (the number of groups of order <= 12) = 24.

%e a(5) = 26 because 26 divides (the number of groups of order <= 26) = 78 = 3 * 26.

%e a(6) = 31 because 31 divides (the number of groups of order <= 31) = 93 = 3 * 31.

%o (GAP) A173669 := function(max) local n, res, i; n := 0; res := []; for i in [1..max] do n := n + NrSmallGroups(i); if n mod i = 0 then Add(res, i); fi; od; return res; end; # _Eric M. Schmidt_, Feb 10 2013

%Y Cf. A000001, A063756.

%K nonn,more,changed

%O 1,2

%A _Jonathan Vos Post_, Nov 24 2010

%E More terms from _Eric M. Schmidt_, Feb 10 2013

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 March 28 09:01 EDT 2024. Contains 371236 sequences. (Running on oeis4.)