OFFSET
1,1
COMMENTS
It is conjectured that there are no odd terms in this sequence, which is equivalent to the conjecture that there are no odd perfect numbers.
Question: Where do the densest clusters of terms occur? See also the scatter plot. - Antti Karttunen, Mar 12 2024
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..17020
Michael De Vlieger, Log log scatterplot of a(n), n = 1..17020, labeling cusps in the plot.
MATHEMATICA
Select[Range[10^4], Block[{s = DivisorSigma[1, #]}, # == BitAnd[#, s-#] && 2*# == BitAnd[2*#, s]] &] (* Paolo Xausa, Mar 11 2024 *)
PROG
(PARI) for(n=1, oo, if( (bitand(n, sigma(n)-n)==n) && (bitand(n+n, sigma(n))==2*n), print1(n, ", ")))
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Antti Karttunen, Mar 14 2019
STATUS
approved