OFFSET
2,2
COMMENTS
Every pair p of positive integers is of the form p = (a(n), A052409(n)) for exactly one n.
FORMULA
For n>1 we have a(n) = A278028(n,1).
EXAMPLE
MATHEMATICA
nn=100;
q=Table[Power[n, 1/GCD@@FactorInteger[n][[All, 2]]], {n, 2, nn}];
q/.Table[Union[q][[i]]->i, {i, Length[Union[q]]}]
PROG
(PARI) a(n) = if (ispower(n, , &r), x = r, x = n); sum(k=2, x, ispower(k)==0); \\ Michel Marcus, Jul 19 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 22 2017
STATUS
approved