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”).

A328274
Numbers m such that phi(m) = rad(m)^3, where phi is the Euler totient function (A000010) and rad is the squarefree kernel function (A007947).
2
1, 16, 648, 2500, 101250, 259308, 1542294, 3660250, 4691556, 33734898, 846948966, 1877404326, 21107677374, 39691260010, 535377671178, 178726991395974
OFFSET
1,2
COMMENTS
De Koninck et al. showed that there are 16 terms in this sequence.
LINKS
Jean-Marie De Koninck, Florian Luca and A. Sankaranarayanan, Positive integers whose Euler function is a power of their kernel function, Rocky Mountain Journal of Mathematics, Vol. 36, No. 1 (2006), pp. 81-96, alternative link.
EXAMPLE
16 is in the sequence since phi(16) = 8, rad(16) = 2 and 8 = 2^3.
MATHEMATICA
rad[n_] := Times @@ First /@ FactorInteger[n]; aQ[n_] := EulerPhi[n] == rad[n]^3; Select[Range[5*10^6], aQ]
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Amiram Eldar, Oct 10 2019
STATUS
approved