|
|
A173669
|
|
Numbers n which divide number of groups of order <= n (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
|
Table of n, a(n) for n=1..12.
|
|
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
|
Cf. A000001, A063756.
Sequence in context: A148070 A187994 A016021 * A136703 A249490 A075269
Adjacent sequences: A173666 A173667 A173668 * A173670 A173671 A173672
|
|
KEYWORD
|
nonn,more
|
|
AUTHOR
|
Jonathan Vos Post, Nov 24 2010
|
|
EXTENSIONS
|
More terms from Eric M. Schmidt, Feb 10 2013
|
|
STATUS
|
approved
|
|
|
|