login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A241405
Sum of modified exponential divisors: if n = product p_i^r_i then me-sigma(x) = product (sum p_i^s_i such that s_i+1 divides r_i+1).
6
1, 3, 4, 5, 6, 12, 8, 11, 10, 18, 12, 20, 14, 24, 24, 17, 18, 30, 20, 30, 32, 36, 24, 44, 26, 42, 31, 40, 30, 72, 32, 39, 48, 54, 48, 50, 38, 60, 56, 66, 42, 96, 44, 60, 60, 72, 48, 68, 50, 78, 72, 70, 54, 93, 72, 88, 80, 90, 60, 120, 62, 96, 80, 65, 84, 144, 68, 90, 96, 144, 72, 110, 74, 114, 104, 100, 96, 168, 80
OFFSET
1,2
COMMENTS
The modified exponential divisors of a number n = product p_i^r_i are all numbers of the form product p_i^s_i such that s_i+1 divides r_i+1 for each i.
Number of modified exponential divisors coincides with number of exponential divisors A049419.
The concept of modified exponential divisors simplifies combinatorial problems on the sum of exponential divisors A051377 such as a search of e-perfect numbers. Each primitive e-perfect number A054980 corresponds to a unique me-perfect number of smaller magnitude.
FORMULA
a(n / A007947(n)) = A051377(n).
Multiplicative with a(p^a) = sum p^b such that b+1 divides a+1.
MATHEMATICA
f[p_, e_] := DivisorSum[e+1, p^(#-1)&]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Sep 03 2023 *)
PROG
(PARI) A241405(n) = {my(f=factor(n)); prod(i=1, #f[, 1], sumdiv(f[i, 2]+1, d, f[i, 1]^(d-1)))}
CROSSREFS
KEYWORD
nonn,easy,mult
AUTHOR
Andrew Lelechenko, May 06 2014
EXTENSIONS
More terms from Antti Karttunen, Nov 23 2017
STATUS
approved