cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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).

Original entry on oeis.org

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

Views

Author

Andrew Lelechenko, May 06 2014

Keywords

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.
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.

Crossrefs

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

a(n / A007947(n)) = A051377(n).
Multiplicative with a(p^a) = sum p^b such that b+1 divides a+1.

Extensions

More terms from Antti Karttunen, Nov 23 2017
Incorrect comment removed by Amiram Eldar, Dec 14 2024