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
1, 2, 3, 12, 26, 31, 84, 119, 248, 1107, 1543, 1683 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
No other terms up to 2047. - Eric M. Schmidt, Feb 10 2013
LINKS
FORMULA
{k: k | A063756(k)} == {k: k | SUM[i=1..k] A000001(i)}.
EXAMPLE
a(1) = 1 because 1 divides (the number of groups of order <= 1) = (number of groups of order 1) = 1.
a(4) = 12 because 12 divides (the number of groups of order <= 12) = 24.
a(5) = 26 because 26 divides (the number of groups of order <= 26) = 78 = 3 * 26.
a(6) = 31 because 31 divides (the number of groups of order <= 31) = 93 = 3 * 31.
PROG
(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
CROSSREFS
Sequence in context: A148070 A187994 A016021 * A136703 A349016 A249490
KEYWORD
nonn,more
AUTHOR
Jonathan Vos Post, Nov 24 2010
EXTENSIONS
More terms from Eric M. Schmidt, Feb 10 2013
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 13:54 EDT 2024. Contains 371730 sequences. (Running on oeis4.)