OFFSET
1,1
EXAMPLE
a(2) = 30 because 30, 31,.., 60, 61, .., 98 and 99 are the base 10/3 expansions for the integers 10, 11, .., 20, 21,.., 38, and 39 respectively and these are the only integers with 2 digits.
PROG
(Sage)
A=[1]
for i in [1..60]:
A.append(ceil(((10-3)/3)*sum(A)))
[10*x for x in A]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Hailey R. Olafson, Jul 21 2014
STATUS
approved