OFFSET
1,2
COMMENTS
In decimal representation feasible only for bases <= 10; A106371(11) = 360 = 2*11^2 + 10*11^1 + 8*11^0 is the first number which cannot be written zerofree with digits 1..9 in base 11. Therefore this sequence is finite with exactly 359 terms. - Reinhard Zumkeller, Apr 12 2015
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..359
PROG
(Haskell)
a106371 n = a106371_list !! (n-1)
a106371_list = map fromJust $ takeWhile (/= Nothing) $ map f [1..] where
f n = g 2 n where
g b x = h x 0 where
h 0 y = if b <= 10 then Just (a004086 y) else Nothing
h z y = if r == 0 then g (b + 1) n else h z' (10 * y + r)
where (z', r) = divMod z b
-- Reinhard Zumkeller, Apr 12 2015
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
Reinhard Zumkeller, May 01 2005
STATUS
approved