OFFSET
1,2
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
EXAMPLE
a(43) = 64. The sigma(k,64) values for k=0,1,2,3 are as follows: 7, 127, 5461 and 299593. While 7 does not divide the sum of divisors, 127, it divides the sum of d^3 values: Sum(d^3) = 299593 = 7*127*337.
MATHEMATICA
Select[Range[103], Divisible[DivisorSigma[3, #], DivisorSigma[0, #]] &] (* Jayanta Basu, Jun 29 2013 *)
PROG
(Magma) [n: n in [1..110] | IsZero(DivisorSigma(3, n) mod NumberOfDivisors(n))]; // Bruno Berselli, Apr 11 2013
(PARI) isok(n) = sigma(n, 3) % numdiv(n) == 0; \\ Michel Marcus, May 13 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved