OFFSET
2,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 2..300
MATHEMATICA
Table[n^FactorInteger[n][[1, 1]], {n, 2, 30}] (* Harvey P. Dale, Dec 04 2012 *)
PROG
(PARI) xtosdiv(n) = \x to the power of smallest prime divisor of x <= n { local(z); for(x=2, n, y=Vec(factor(x)); z=x^y[1][1]; print1(z", ") ) }
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Jun 05 2005
STATUS
approved