OFFSET
1,2
COMMENTS
sigma_7(n) is the sum of the 7th powers of the divisors of n.
In contrast to other values of k for which sigma_k(n) is much less frequently divisible by phi(n) (cf. A015762 (k=4: a(7) > 10^11 if it exists), A015759 (k=2: a(23) > 10^11)), it is quite easy to compute hundreds or even thousands of terms of the present sequence. - M. F. Hasler, Aug 26 2017
LINKS
M. F. Hasler, Table of n, a(n) for n = 1..10000 (first 1001 terms from Vincenzo Librandi)
MATHEMATICA
Select[Range[2100], Divisible[DivisorSigma[7, #], EulerPhi[#]]&] (* Harvey P. Dale, Aug 17 2013 *)
PROG
(PARI) select( is(n)=sigma(n, 7)%eulerphi(n)==0, [1..3000]) \\ M. F. Hasler, Aug 26 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Third line of data completed by M. F. Hasler, Aug 26 2017
STATUS
approved