OFFSET
1,2
COMMENTS
See A162363. It is easy to see that every power of 2 is a binary Keith number.
FORMULA
Union of A162363 and the powers of 2.
MATHEMATICA
IsKeith2[n_Integer] := Module[{b, s}, b=IntegerDigits[n, 2]; s=Total[b]; If[s<=1, True, k=1; While[s=2*s-b[[k]]; s<n, k++ ]; s== n]]; Select[Range[3000], IsKeith2[ # ]&]
CROSSREFS
KEYWORD
base,nonn
AUTHOR
T. D. Noe, Jul 11 2009
STATUS
approved