login
A037372
Positive numbers k such that every base-2 digit of k is a base-3 digit of k.
8
1, 3, 7, 9, 10, 11, 12, 15, 19, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42, 45, 46, 47, 48, 51, 55, 57, 58, 59, 61, 63, 64, 65, 66, 69, 73, 75, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101
OFFSET
1,2
LINKS
PROG
(Haskell)
import Data.List ((\\), nub)
a037372 n = a037372_list !! (n-1)
a037372_list = filter f [1..] where
f x = null $ nub (ds 2 x) \\ nub (ds 3 x)
ds b x = if x > 0 then d : ds b x' else [] where (x', d) = divMod x b
-- Reinhard Zumkeller, May 30 2013
KEYWORD
nonn,base
STATUS
approved