OFFSET
1,1
COMMENTS
This sequence abbreviates A389634 by excluding multiples of earlier terms, making it an exact equivalent of A006039 (the primitive nondeficient numbers). The difference is A006039 requires sigma(k)/k to be at least 2, whereas here we use 4/3 (the qualifying value for A389634).
2 followed by odd numbers, k, such that 2k is a primitive nondeficient number.
LINKS
Peter Munn, Table of n, a(n) for n = 1..5000
EXAMPLE
MATHEMATICA
q[k_] := AllTrue[Divisors[k], # < k && DivisorSigma[-1, #] < 4/3 || # == k && DivisorSigma[-1, #] >= 4/3 &]; Select[Range[36000], q] (* Amiram Eldar, Oct 11 2025 *)
PROG
(PARI) isok(k) = if(3*sigma(k)<4*k, 0, fordiv(k, d, if(d<k && (3*sigma(d)>=4*d), return(0))); 1)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Peter Munn, Oct 11 2025
STATUS
approved
