A206914 Least binary palindrome >= n; the binary palindrome ceiling function.
0, 1, 3, 3, 5, 5, 7, 7, 9, 9, 15, 15, 15, 15, 15, 15, 17, 17, 21, 21, 21, 21, 27, 27, 27, 27, 27, 27, 31, 31, 31, 31, 33, 33, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 51, 51, 51, 51, 51, 51, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 65, 65, 73, 73
Offset: 0
Examples
a(0) = 0 since 0 is the least binary palindrome >= 0; a(1) = 1 since 1 is the least binary palindrome >= 1; a(2) = 3 since 3 is the least binary palindrome >= 2; a(5) = 5 since 5 is the least binary palindrome >= 5;
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 0..10000
Crossrefs
Programs
-
Haskell
a206914 n = head $ dropWhile (< n) a006995_list -- Reinhard Zumkeller, Feb 27 2012
Comments