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).
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
Links
- Antti Karttunen, Table of n, a(n) for n = 1..16384
- David Moews, Perfect, amicable and sociable numbers.
- Index entries for sequences related to sums of divisors.
Programs
-
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 *)
-
PARI
A241405(n) = {my(f=factor(n)); prod(i=1, #f[, 1], sumdiv(f[i, 2]+1, d, f[i, 1]^(d-1)))}
Formula
Extensions
More terms from Antti Karttunen, Nov 23 2017
Incorrect comment removed by Amiram Eldar, Dec 14 2024
Comments