OFFSET
1,2
COMMENTS
a(n) = n iff n is 1 or a prime power; otherwise, a(n) > n. - Ivan Neretin, May 31 2016
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..10000
EXAMPLE
a(67500) = a(2^2*3^3*5^4) = a(4*27*625) = 427625.
MATHEMATICA
Table[FromDigits@Flatten@IntegerDigits[#[[1]]^#[[2]] & /@ FactorInteger[n]], {n, 64}] (* Ivan Neretin, May 31 2016 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Vladeta Jovovic, Mar 03 2003
EXTENSIONS
Edited by Charles R Greathouse IV, Apr 29 2010
STATUS
approved