login
A226647
Numbers k such that Sum_{i=1..k} sigma(i) is divisible by Sum_{i=1..k} d(i), where sigma(i) = sum of divisors of i (A000203), and d(i) = number of divisors of i (A000005).
6
1, 9, 25, 37, 63, 71876888199
OFFSET
1,2
COMMENTS
No other terms below 2^36. - Alex Ratushnyak, Jun 29 2013
The ratio corresponding to a(6) is 4249100789716352394810 / 1807894350282 = 2350303705. a(7) > 10^12. - Giovanni Resta, Apr 13 2017
LINKS
C. K. Caldwell, and G. L. Honaker, Jr., Prime curio for 37
FORMULA
Numbers k such that A006218(k) divides A024916(k).
EXAMPLE
A006218(9) = 23, A024916(9) = 69, 23 divides 69, so 9 is in the sequence.
MATHEMATICA
Flatten[Position[Accumulate[Table[{DivisorSigma[1, n], DivisorSigma[0, n]}, {n, 100}]], _?(Divisible[First[#], Last[#]]&), {1}, Heads->False]] (* Harvey P. Dale, Jun 19 2013 *)
PROG
(PARI) isok(n) = sum(k=1, n, sigma(k)) % sum(k=1, n, numdiv(k)) == 0; \\ Michel Marcus, Jul 07 2016
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Alex Ratushnyak, Jun 13 2013
EXTENSIONS
a(6) from Giovanni Resta, Apr 12 2017
STATUS
approved