OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
945 is a term since it is odd, and it has only one abundant divisor, 945 itself.
4725 is a term since it is odd, and it has 3 abundant divisors, 945, 1575 and 4725.
14175 is a term since it is odd, and it has 5 abundant divisors, 945, 1575, 2835, 4725 and 14175.
MATHEMATICA
q[n_] := OddQ[DivisorSum[n, 1 &, DivisorSigma[-1, #] > 2 &]]; Select[Range[1, 22000, 2], q]
PROG
(PARI) isok(k) = if(k % 2, sumdiv(k, d, (sigma(d, -1) > 2)) % 2, 0);
CROSSREFS
KEYWORD
nonn,easy,new
AUTHOR
Amiram Eldar, Feb 26 2025
STATUS
approved