OFFSET
1,1
COMMENTS
The numbers 8-15 are represented by 70, 71, 72, 73, 74, 75, 76, 77 respectively in base 8/7. These are the only integers with two digits, and so a(2)=8.
FORMULA
a(n) = 8*A120186(n).
PROG
(Sage)
A=[1]
for i in [1..60]:
A.append(ceil((8-7)/7*sum(A)))
[8*x for x in A]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
James Van Alstine, Jul 21 2014
STATUS
approved