OFFSET
1,1
COMMENTS
Numbers k such that A187795(k) is odd.
Numbers whose odd part has an odd number of abundant divisors, i.e., numbers k such that A080224(A000265(k)) is odd.
If m is an odd term then 2^k * m is a term for all k >= 0. Therefore, the primitive terms of this sequence are the odd terms, that are also the odd numbers whose number of abundant divisors is odd (A381547).
Are there two consecutive integers in this sequence? There are none below 10^10.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
945 is a term since its sum of abundant divisors is 945, which is odd.
4725 is a term since its sum of abundant divisors is 945 + 1575 + 4725 = 7245, which is odd.
MATHEMATICA
q[n_] := OddQ[DivisorSum[n, # &, DivisorSigma[-1, #] > 2 &]]; Select[Range[13000], q]
PROG
(PARI) isok(k) = sumdiv(k, d, d * (sigma(d, -1) > 2)) % 2;
CROSSREFS
KEYWORD
nonn,easy,new
AUTHOR
Amiram Eldar, Feb 26 2025
STATUS
approved