login
A389330
Exponential unitary deficient numbers that have at least one exponential unitary abundant divisor.
2
3528, 3600, 5292, 5400, 7056, 7200, 8100, 8712, 9000, 9800, 10584, 10800, 12168, 13068, 13500, 14112, 14400, 15876, 16200, 17424, 17640, 18000, 18252, 19600, 20808, 21168, 21600, 24300, 24336, 24500, 24696, 25200, 25992, 26136, 26460, 27000, 28224, 28800, 29400
OFFSET
1,1
COMMENTS
First differs from its subsequence A389331 at n = 21: a(21) = 17640 = 2^3 * 3^2 * 5 * 7^2 is not a term of A389331.
Exponential unitary deficient numbers are numbers k with esigma(k)/k < 2, where esigma = A051377. These are numbers that are neither e-unitary perfect (A054979 \ A322858) nor exponential unitary abundant (A383693).
An exponential unitary deficient number k is a term if and only if Product_{primes p, p^2 | k} (1+1/p) > 2.
All the terms are noncubefree (A046099).
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 (A389331) 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(A389331(n)) = 0.0014992..., where f(n) = (6/(Pi^2*n)) * Product_{prime p|n}(p/(p+1)).
The least odd term is a(1014006) = 676350675.
LINKS
MATHEMATICA
f[p_, e_] := DivisorSum[e, p^# &, GCD[#, e/#] == 1 &]; eusigma[1] = 1; eusigma[n_] := Times @@ f @@@ FactorInteger[n];
expUAbQ[n_] := eusigma[n] > 2*n; expUDefQ[n_] := eusigma[n] < 2*n; q[n_] := expUDefQ[n] && AnyTrue[Divisors[n], expUAbQ]; Select[Range[30000], q]
PROG
(PARI) fun(p, e) = sumdiv(e, d, if(gcd(d, e/d) == 1, p^d));
isok(k) = {my(f = factor(k)); prod(i = 1, #f~, fun(f[i, 1], f[i, 2])) < 2*k && prod(i = 1, #f~, if(f[i, 2] > 1, 1+1/f[i, 1], 1)) > 2; }
CROSSREFS
Subsequence of A046099.
Subsequences: A389297, A389331.
Sequence in context: A267125 A241240 A035897 * A389331 A064256 A389297
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Sep 30 2025
STATUS
approved