OFFSET
1,1
COMMENTS
First differs from its subsequence A383697 at n = 21.
All the terms are nonsquarefree numbers (A013929), since A322857(k) = k if k is a squarefree number (A005117).
If an exponential abundant number (A129575) is exponentially squarefree (A209061), then it is in this sequence. Terms of this sequence that are not exponentially squarefree are a(21) = 22500, a(77) = 86436, a(140) = 157500, etc..
The least odd term is a(202273) = 225450225, and the least term that is coprime to 6 is a(1.002..*10^18) = 1117347505588495206025.
The asymptotic density of this sequence is Sum_{n>=1} f(A383694(n)) = 0.00089722..., where f(n) = (6/(Pi^2*n))*Product_{prime p|n}(p/(p+1)).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
900 is a term since A322857(900) = 2160 > 2*900 = 1800.
MATHEMATICA
f[p_, e_] := DivisorSum[e, p^# &, GCD[#, e/#] == 1 &]; q[n_] := Times @@ f @@@ FactorInteger[n] > 2 n; Select[Range[50000], 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; }
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, May 05 2025
STATUS
approved
