OFFSET
1,2
COMMENTS
sigma_6(n) is the sum of the 6th powers of the divisors of n.
MAPLE
with(numtheory): A015764:=n->`if`(sigma[6](n) mod phi(n) = 0, n, NULL): seq(A015764(n), n=1..10^5); # Wesley Ivan Hurt, Mar 10 2015
MATHEMATICA
Select[Range[10^5], Divisible[DivisorSigma[6, #], EulerPhi[#]] &] (* Amiram Eldar, Jan 20 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Labos Elemer, May 03 2002
a(23)-a(34) from Amiram Eldar, Jan 20 2019
STATUS
approved