OFFSET
1,1
COMMENTS
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
n=20: 20[binary]='101001', 20[ternary]='202',
20[base-4]='110', 20[base-5]='40', all containing at least one zero,
but: 20[base-6]='32', containing no zero therefore a(20)=6.
PROG
(Haskell)
a106370 n = f 2 n where
f b x = g x where
g 0 = b
g z = if r == 0 then f (b + 1) n else g z'
where (z', r) = divMod z b
-- Reinhard Zumkeller, Apr 12 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, May 01 2005
EXTENSIONS
Typo in comment fixed by Reinhard Zumkeller, Aug 06 2010
STATUS
approved