OFFSET
1,1
COMMENTS
See A024662 for an explanation of base 10/7.
EXAMPLE
a(2) = 10 because 70, 71, 72, 73, 74, 75, 76, 77, 78 and 79 are the base 10/7 expansions for the integers 10, 11, 12, 13, 14, 15, 16, 17, 18 and 19 respectively and these are the only integers with 2 digits.
PROG
(Sage)
A=[1]
for i in [1..60]:
A.append(ceil(((10-7)/7)*sum(A)))
[10*x for x in A]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Hailey R. Olafson, Jul 21 2014
STATUS
approved