A078165 Numbers k such that phi(k) is a perfect 5th power.
1, 2, 51, 64, 68, 80, 96, 102, 120, 1285, 2048, 2056, 2176, 2560, 2570, 2720, 3072, 3084, 3264, 3840, 4080, 7957, 8227, 8279, 9079, 9139, 9709, 9919, 10355, 10595, 11667, 11673, 11691, 12099, 12393, 12483, 12753, 12987, 13797, 14715, 14763
Offset: 1
Keywords
Examples
phi of the sequence includes 1, 32, 1024, 7776, ...; powers arise several times; a(3) = A053576(5) = 51.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
k=5; Do[s=EulerPhi[n]^(1/k); If[IntegerQ[s], Print[n]], {n, 1, 5000}] Select[Range[15000],IntegerQ[Surd[EulerPhi[#],5]]&] (* Harvey P. Dale, Jul 26 2019 *)
-
PARI
is(n)=ispower(eulerphi(n),5) \\ Charles R Greathouse IV, Apr 24 2020
Comments