OFFSET
1,1
COMMENTS
First differs from A318100 at n = 49: 4900 is a term that is not an exponential pseudoperfect number.
From Amiram Eldar, Nov 28 2025: (Start)
Also called "e-Zumkeller numbers" by Kalita and Saikia (2025).
The set of exponential divisors of a number k is equal to the set of exponential divisors of the powerful part of k (A057521), each multiplied by the powerfree part of k (A055231). Therefore, if k is a term and m is a squarefree number coprime to k, then k*m is also a term. The primitive terms of this sequence (A391087) are the powerful (A001694) terms. All the terms are of the form k*m where k is primitive and m is a squarefree number coprime to k.
The asymptotic density of this sequence is Sum_{n>=1} f(A391087(n)) = 0.0097377..., where f(n) = (6/(Pi^2*n)) * Product_{prime p|n} (p/(p+1)).
All the odd terms are exponential abundant numbers (A129575), since there are no odd e-perfect number (A054979), as proved by Straus and Subbarao (1974).
The least odd term is a(2195355) = A321147(1) = 225450225 = (3 * 5 * 7 * 11 * 13)^2, which is the least odd exponential abundant number.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Jayanta Kalita and Helen K. Saikia, e-Zumkeller Numbers and e-Unitary Zumkeller Numbers, Palestine Journal of Mathematics, Vol. 14, No. 3 (2025), pp. 684-691.
E. G. Straus and M. V. Subbarao, On exponential divisors, Duke Math. J., Vol. 41, No. 2 (1974), pp. 465-471.
EXAMPLE
36 is a term since its exponential divisors, {6, 12, 18, 36}, can be partitioned into 2 disjoint sets whose sum is equal: 6 + 12 + 18 = 36.
MATHEMATICA
dQ[n_, m_] := (n > 0 && m > 0 && Divisible[n, m]); expDivQ[n_, d_] := Module[{ft = FactorInteger[n]}, And @@ MapThread[dQ, {ft[[;; , 2]], IntegerExponent[d, ft[[;; , 1]]]}]]; eDivs[n_] := Module[{d = Rest[Divisors[n]]}, Select[d, expDivQ[n, #] &]]; ezQ[n_] := Module[{d = eDivs[n], sum, x}, sum = Plus @@ d; If[sum < 2*n || OddQ[sum], False, CoefficientList[Product[1 + x^i, {i, d}], x][[1 + sum/2]] > 0]]; Select[Range[10^4], ezQ]
CROSSREFS
The exponential version of A083207.
KEYWORD
nonn
AUTHOR
Amiram Eldar, May 27 2020
STATUS
approved
