OFFSET
0,12
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..1000
Eric Weisstein's World of Mathematics, Repunit
Wikipedia, Repunit
PROG
(Haskell)
a206245 = p a083278_list where
p _ 0 = 1
p rps'@(rp:rps) n = if n < rp then 0 else p rps' (n - rp) + p rps n
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Feb 05 2012
STATUS
approved