OFFSET
1,2
COMMENTS
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..7000
Florian Luca and John Ferdinands, Problem 11090: Sometimes n divides sigma_k(n), Amer. Math. Monthly 113:4 (2006), pp. 372-373.
MATHEMATICA
Do[If[Mod[DivisorSigma[5, n], n]==0, Print[n]], {n, 1, 15000}]
Select[Range[10000], Divisible[DivisorSigma[5, #], #]&] (* Harvey P. Dale, Aug 09 2013 *)
PROG
(PARI) is(n)=sigma(n, 5)%n==0 \\ Charles R Greathouse IV, Feb 01 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jun 09 2000
STATUS
approved