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

A226386
Numbers n such that rad(phi(n)) < phi(rad(n)), where rad(n) is the squarefree kernel of n, and phi is Euler's totient function.
2
5, 10, 13, 15, 17, 19, 20, 21, 26, 29, 30, 33, 34, 35, 37, 38, 39, 40, 41, 42, 45, 51, 52, 53, 55, 57, 58, 60, 61, 63, 65, 66, 68, 69, 70, 73, 74, 76, 77, 78, 80, 82, 84, 85, 87, 89, 90, 91, 93, 95, 97, 101, 102, 104, 105, 106, 109, 110, 111, 113, 114, 115
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
rad[n_] := Product[fa[n][[i, 1]], {i, Length[fa[n]]}]; fa = FactorInteger; Select[Range[500], rad[EulerPhi[#]] < EulerPhi[rad[#]] &]
PROG
(PARI) rad(n)=my(f=factor(n)[, 1]); prod(i=1, #f, f[i])
is(n)=my(f=factor(n)[, 1], r=prod(i=1, #f, f[i]), ph=prod(i=1, #f, f[i]-1)*n/r); rad(ph)<eulerphi(r) \\ Charles R Greathouse IV, Dec 13 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved