OFFSET
1,1
COMMENTS
Subsequence of A328135 and first differ from it at n = 25: A328135(25) = 15330615300 is not a term of this sequence.
For squarefree numbers k, esigma(k) = k, where esigma is the sum of exponential divisors function (A051377). Thus, if m is a term (esigma(m) >= 3*m) and k is a squarefree number coprime to m, then esigma(k*m) = esigma(k) * esigma(m) = k * esigma(m) >= 3*k*m, so k*m is an exponential 3-nondeficient number. Therefore, the sequence of exponential 3-nondeficient numbers (A328135) can be generated from this sequence by multiplying with coprime squarefree numbers.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10136 (terms below 10^16)
EXAMPLE
901800900 is a term since esigma(901800900) = 2905943040 > 3 * 901800900 = 2705402700, and 901800900 = 2^2 * 3^2 * 5^2 * 7^2 * 11^2 * 13^2 is a powerful number.
MATHEMATICA
pows[max_] := Union[Flatten[Table[i^2*j^3, {j, 1, Surd[max, 3]}, {i, 1, Sqrt[max/j^3]}]]];
f[p_, e_] := DivisorSum[e, p^# &]; esigma[1] = 1; esigma[n_] := Times @@ f @@@ FactorInteger[n];
seq[max_] := Select[pows[max], esigma[#] >= 3 # &]; seq[10^10]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, May 06 2025
EXTENSIONS
Name corrected by Amiram Eldar, Sep 24 2025
STATUS
approved
