login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A093038
Numbers k such that sum of 5th powers of divisors of k is divisible by the square of Euler-phi of k.
0
1, 2, 3, 6, 322, 966, 473732, 1420296, 6655780894
OFFSET
1,2
COMMENTS
No more terms through 10^9. - Ryan Propper, Jan 09 2007
FORMULA
A001160(k)/A000010(k)^2 is an integer.
MATHEMATICA
Do[ If[ Mod[ DivisorSigma[5, n], EulerPhi[n]^2] == 0, Print[n]], {n, 10^7}] (* Robert G. Wilson v, May 23 2004 *)
PROG
(PARI) isok(k) = (sigma(k, 5) % eulerphi(k)^2) == 0; \\ Michel Marcus, Mar 07 2020
CROSSREFS
KEYWORD
nonn,more,changed
AUTHOR
Labos Elemer, May 19 2004
EXTENSIONS
a(9) from Amiram Eldar, Mar 07 2020
STATUS
approved