OFFSET
1,1
EXAMPLE
The numbers 9-17 are represented by 50, 51, 52, 53, 54, 55, 56, 57, 58 respectively in base 9/5. Since these are the only two digit integers we have a(2) = 9.
PROG
(Sage)
A=[1]
for i in [1..100]:
A.append(ceil(((9-5)/5)*sum(A)))
[9*x for x in A]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Tom Edgar, Jul 21 2014
STATUS
approved