OFFSET
1,3
COMMENTS
usigma(m) is the sum of unitary divisors of m, A034448.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
a(12)=6 because the unitary divisors of 6 are 1,2,3,6; they sum to 12.
MATHEMATICA
usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); m = 100; v = Table[0, {m}]; Do[u = usigma[n]; If[u <= m && v[[u]] == 0, v[[u]] = n], {n, 1, m}]; v (* Amiram Eldar, Sep 22 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Sep 05 2001
EXTENSIONS
Edited by Don Reble, May 14 2006
STATUS
approved