OFFSET
1,1
COMMENTS
Numbers k such that rad(usigma(k)) = rad(nusigma(k)), where rad(k) is the squarefree kernel of k (A007947), usigma(k) is the sum of unitary divisors of k (A034448) and nusigma(k) = sigma(k) - usigma(k) is the sum of nonunitary divisors of k (A048146).
Numbers k such that rad(usigma(k)) = rad(nusigma(k)) = rad(k) are 24, 3780, 26460, ... with no other term below 3*10^9.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
rad[n_] := Times @@ (First@# & /@ FactorInteger@ n); usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); nusigma[n_] := DivisorSigma[1, n] - usigma[n]; Select[Range[700], rad[usigma[#]] == rad[nusigma[#]] &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 23 2019
STATUS
approved