login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A162724
Binary Keith numbers.
11
1, 2, 3, 4, 8, 16, 32, 64, 128, 143, 256, 285, 512, 569, 683, 1024, 1138, 1366, 2048, 2276, 4096, 8192, 16384, 32768, 65536, 131072, 154203, 262144, 308405, 524288, 616810, 678491, 1048576, 1356981, 1480343, 2097152, 2713962, 2960686, 4194304
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
Sequence in context: A126294 A339973 A224912 * A244750 A140974 A349763
KEYWORD
base,nonn
AUTHOR
T. D. Noe, Jul 11 2009
STATUS
approved