OFFSET
1,2
COMMENTS
The exponential version of A056550.
The corresponding quotients are 1, 2, 3, 5, 8, 45, ... (see the link for more values).
LINKS
EXAMPLE
3 is in the sequence since esigma(1) + esigma(2) + esigma(3) = 1 + 2 + 3 = 6 is divisible by 3.
MATHEMATICA
esigma[n_] := Times @@ (Sum[ First[#]^d, {d, Divisors[Last[#]]}] & ) /@ FactorInteger[n]; seq={}; s = 0; Do[s = s + esigma [n]; If[Divisible[s, n], AppendTo[seq, n]], {n, 1, 10^6}]; seq (* after Jean-François Alcover at A051377 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Mar 21 2019
STATUS
approved
