OFFSET
1,1
FORMULA
a(n) = 9*A120194(n).
EXAMPLE
a(2) = 9 since 80, 81, 82, 83, 84, 85, 86, 87, 88 are the base 9/8 representations of 9-17 respectively and these are the only integers with 2 digits.
PROG
(Sage)
A=[1]
for i in [1..100]:
A.append(ceil(((9-8)/8)*sum(A)))
[9*x for x in A]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Tom Edgar, Jul 21 2014
STATUS
approved