login
A336681
Odd exponential admirable numbers: the odd terms of A336680.
3
6485886225, 71344748475, 110260065825, 123231838275, 125730522225, 149175383175, 162485579025, 185601564225, 188090700525, 191620685025, 195686793225, 201062472975, 239977790325, 265921335225, 278893107675, 304836652575, 343751969925, 395639059725, 434554377075
OFFSET
1,1
COMMENTS
Exponential admirable numbers that are odd are relatively rare: there are 5742336 even exponential admirable numbers that are smaller than the first odd term, i.e., a(1) = A336680(5742337).
From Amiram Eldar, Dec 05 2025: (Start)
If k is a term, and m is a squarefree number coprime to k, then k*m is also a term. The primitive terms in this sequence (A391284) are the powerful (A001694) terms.
The asymptotic density of this sequence is Sum_{n>=1} f(A391284(n)) = 5.58899...*10^(-11), where f(n) = (6/(Pi^2*n)) * Product_{prime p|n} (p/(p+1)). (End)
LINKS
EXAMPLE
6485886225 is a term since 6485886225 = 80535 + 241605 + ... + (-8456175) + ... + 2161962075 is the sum of its proper exponential divisors with one of them, 8456175, taken with a minus sign.
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]]]}]]; esigma[n_] := Times @@ (Sum[First[#]^d, {d, Divisors[Last[#]]}] &) /@ FactorInteger[n]; expAdmQ[n_] := (ab = esigma[n] - 2*n) > 0 && EvenQ[ab] && ab/2 < n && Divisible[n, ab/2] && expDivQ[n, ab/2]; Select[Range[1, 10^9, 2], expAdmQ]
PROG
(PARI) fun(p, e) = sumdiv(e, d, p^d);
isexpdiv(f, d) = {for(i = 1, #f~, if(d % f[i, 1], return(0)); if(f[i, 2] % valuation(d, f[i, 1]), return(0))); 1; }
isok(k) = if(!(k % 2), 0, my(f = factor(k), s = prod(i = 1, #f~, fun(f[i, 1], f[i, 2])), ab = s - 2*k); ab > 0 && !(ab % 2) && !(k % (ab/2)) && isexpdiv(f, ab/2)); \\ Amiram Eldar, Dec 05 2025
CROSSREFS
The exponential version of A109729.
Intersection of A005408 and A336680.
Subsequence of A321147.
A391284 is a subsequence.
Similar sequences: A329188, A334973, A334975.
Sequence in context: A281222 A258365 A127342 * A391284 A268845 A161160
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jul 30 2020
STATUS
approved