OFFSET
1,3
COMMENTS
The squarefree kernel of the greatest common divisor of sigma(n) and phi(n). - Antti Karttunen, Jan 22 2020
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..65537
FORMULA
MATHEMATICA
ffi[x_] := Flatten[FactorInteger[x]] lf[x_] := Length[FactorInteger[x]] ba[x_] := Table[Part[ffi[x], 2*w-1], {w, 1, lf[x]}] Table[Apply[Times, Intersection[ba[EulerPhi[w]], ba[DivisorSigma[1, w]]]], {w, 1, 256}]
PROG
(PARI) A082055(n) = factorback(factorint(gcd(sigma(n), eulerphi(n)))[, 1]); \\ Antti Karttunen, Jan 22 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Apr 03 2003
STATUS
approved