OFFSET
1,2
COMMENTS
This sequence becomes rare for large n: 15 values between 100000 and 101024 and none between 1000000 and 1001024.
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..1000
EXAMPLE
8 is absent since 8 in binary is (1000) with sum=1, while (8+1) has 2 factors.
MATHEMATICA
Select[ Range[ 1024 ], DigitCount[ #, 2, 1 ]===(Plus@@(Last/@FactorInteger[ #+1 ]))& ]
Select[Range[300], DigitCount[#, 2, 1]==PrimeOmega[#+1]&] (* Harvey P. Dale, Mar 11 2023 *)
PROG
(PARI) isok(k) = { hammingweight(k) == bigomega(k+1) } \\ Harry J. Smith, Sep 18 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Wouter Meeussen, Oct 09 2001
STATUS
approved