OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
56 is in the sequence because the sum of its divisors, 1 + 2 + 4 + 7 + 8 + 14 + 28 + 56 = 120 > 2*56 and its base-2 representation (111000) has an odd number of 1's.
MAPLE
with(numtheory): a:=proc(n) local n2: n2:=convert(n, base, 2): if add(n2[j], j=1..nops(n2)) mod 2 = 1 and sigma(n)>2*n then n else fi end: seq(a(n), n=1..750); # Emeric Deutsch, Jan 01 2007
MATHEMATICA
Select[Range[650], OddQ @ DigitCount[#, 2][[1]] && DivisorSigma[1, #] > 2# &] (* Amiram Eldar, Dec 09 2019 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Tanya Khovanova, Dec 27 2006
EXTENSIONS
More terms from Emeric Deutsch, Jan 01 2007
STATUS
approved