A220654 Smallest number that can be written in binary representation in exactly n ways as concatenation of palindromes.
0, 3, 9, 7, 17, 23, 34, 15, 33, 39, 55, 47, 66, 88, 72, 31, 65, 71, 103, 79, 133, 111, 152, 95, 130, 136, 215, 176, 277, 144, 273, 63, 129, 135, 199, 143, 443, 207, 284, 159, 261, 280, 239, 223, 588, 260, 264, 191, 258, 376, 272, 336, 627, 431, 529, 352, 532
Offset: 1
Links
Programs
-
Haskell
import Data.List (elemIndex) import Data.Maybe (fromJust) a220654 = fromJust . (`elemIndex` a215244_list)
Comments