OFFSET
1,1
FORMULA
a(n) = 5*A120160(n).
EXAMPLE
The numbers 10..14 are represented by 430, 431, 432, 433, 434 respectively in base 5/4. These are the only numbers with three digits, and so a(3)=5.
PROG
(Sage)
A=[1]
for i in [1..60]:
A.append(ceil((5-4)/4*sum(A)))
[5*x for x in A]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
James Van Alstine, Jul 18 2014
STATUS
approved