OFFSET
1,2
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(32) = 2 since the least k, in this case 5, yields 32^(1/5) = 2.
MAPLE
f:= proc(n) local F, m;
F:= ifactors(n)[2];
m:= igcd(op(map(t->t[2], F)));
if m = 1 then n
else m:= min(numtheory:-factorset(m)); mul(t[1]^(t[2]/m), t=F)
fi
end proc:
map(f, [$1..100]); # Robert Israel, Jan 10 2018
MATHEMATICA
perfectPowerQ[n_] := n == 1 || GCD @@ FactorInteger[n][[All, 2]] > 1; f[n_] := If[ perfectPowerQ@ n, k = 2; While[ !IntegerQ[n^(1/k)], k++]; n^(1/k), n]; Array[f, 75] (* Robert G. Wilson v, Jan 09 2018 *)
PROG
(PARI) a(n) = my(p = ispower(n)); if (!p, n, sqrtnint(n, divisors(p)[2])); \\ Michel Marcus, Jan 02 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Vincenzo Librandi, Sep 03 2010
EXTENSIONS
Edited by the Associate Editors of the OEIS, Sep 03 2010
a(32) corrected by Gionata Neri, Jan 02 2018
STATUS
approved