OFFSET
1,1
COMMENTS
These could be called "asymmetric bit strings".
If these numbers are converted to their binary polynomial, one of the roots of that polynomial will have absolute values other than 1 or 0. For example 11 = 2^3 + 2^1 + 2^0, the absolute values of the roots of x^3 + x + 1 are 0.682328... and 1.21061... which are not 1 or 0, so 11 is in the sequence. The first number with this property which is not a term is A057890(53) = 107. - Benedict W. J. Irwin, Sep 07 2017 and Andrey Zabolotskiy, Oct 13 2017
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
11 is included because 1011 is asymmetrical, but 12 is not because 001100 is a palindrome.
PROG
(Haskell)
a057891 n = a057891_list !! (n-1)
a057891_list = filter ((== 0) . a178225 . a000265) [1..]
-- Reinhard Zumkeller, Oct 21 2011
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
Marc LeBrun, Sep 25 2000
EXTENSIONS
Edited by N. J. A. Sloane, Jun 09 2009 at the suggestion of Ray Chandler
A-numbers in formula corrected by R. J. Mathar, Jun 18 2009
STATUS
approved