OFFSET
1,6
EXAMPLE
11 (decimal) in binary is 1011. Appending 01 to the right side of 1011 forms the binary palindrome 101101, which is 45 in decimal. Since two binary digits is the smallest number of digits that need to be appended on the right side of binary n to form a palindrome, then a(11) = 2. (Note that 45 is not the smallest positive number that when represented in binary is a palindrome and contains 1011 as a substring. That would instead be 11011 {binary} = 27 {decimal}.)
PROG
(Python)
def A161502(n):
s = bin(n)[2:]
if s == s[::-1]:
return 0
for i in range(1, len(s)):
if s[i:] == s[-1:i-1:-1]:
return i # Chai Wah Wu, Aug 27 2021
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Leroy Quet, Jun 11 2009
EXTENSIONS
More terms from Sean A. Irvine, Sep 27 2009
STATUS
approved