login
A067702
Numbers k such that sigma(k) == 0 (mod k+2).
15
12, 70, 88, 180, 1888, 4030, 5830, 32128, 521728, 1848964, 8378368, 34359083008, 66072609790, 549753192448, 259708613909470, 2251799645913088, 9223372026117357568, 2361183241263023915008
OFFSET
1,1
COMMENTS
If 2^i-5 is prime for i > 2 then let x = (2^i-5)*2^(i-1). Then sigma(x)=2*(x+2), so x is in the sequence. There are other terms that are not of this form. - Jud McCranie, Jan 12 2019
Contains terms of A088832, terms m of A045769 with (sigma(m)-4)/m = 2, terms m of A088834 with (sigma(m)-6)/m = 3, terms m of A045770 with (sigma(m)-8)/m = 4, terms m of A076496 with (sigma(m)-12)/m = 6. - Max Alekseyev, Sep 04 2025
EXAMPLE
sigma(180) = 546 = 3(180+2), so 180 is in the sequence.
MATHEMATICA
Select[Range[84*10^5], Divisible[DivisorSigma[1, #], #+2]&] (* Harvey P. Dale, May 11 2018 *)
PROG
(PARI) isok(n) = sigma(n) % (n+2) == 0; \\ Michel Marcus, Nov 22 2013
CROSSREFS
Contains subsequence A088832.
Sequence in context: A212753 A210427 A101097 * A163193 A088832 A366748
KEYWORD
nonn,more
AUTHOR
Benoit Cloitre, Feb 05 2002
EXTENSIONS
a(9)-a(11) from Michel Marcus, Nov 22 2013
a(12)-a(13) from Jud McCranie, Jan 12 2019
a(14) from Jud McCranie, Jan 13 2019
a(15) from Jud McCranie, Dec 02 2019
a(16)-a(18) from Max Alekseyev, Oct 13 2025
STATUS
approved