OFFSET
1,2
COMMENTS
The corresponding record values are 1, 6, 8, 10, 15, 30, 42, 54, 58, 60, 78, ... (see the link for more values).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..577
Amiram Eldar, Table of n, a(n), A160135(a(n)) for n = 1..577
EXAMPLE
The first 6 values of nesigma(k), for k = 1 to 6 are 1, 1, 1, 1, 1 and 6. The record values, 1 and 6, occur at 1 and 6, the first 2 terms of this sequence.
MATHEMATICA
esigma[n_] := Times @@ (Sum[First[#]^d, {d, Divisors[Last[#]]}] &) /@ FactorInteger[n]; s[1] = 1; s[n_] := DivisorSigma[1, n] - esigma[n]; seq = {}; sm = -1; Do[s1 = s[n]; If[s1 > sm, sm = s1; AppendTo[seq, n]], {n, 1, 10^4}]; seq
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Oct 26 2021
STATUS
approved