OFFSET
1,2
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..450 from Harvey P. Dale)
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[6, n], n]==0, Print[n]], {n, 1, 25000}]
Select[Range[20000], Divisible[DivisorSigma[6, #], #]&] (* Harvey P. Dale, Jun 04 2015 *)
PROG
(PARI) is(n)=sigma(n, 6)%n==0 \\ Charles R Greathouse IV, Feb 04 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jun 09 2000
STATUS
approved