OFFSET
1,1
FORMULA
a(n) = 7*A120178(n).
EXAMPLE
a(3) = 7 because 650, 651, 652, 653, 654, 655 and 656 are the base 7/6 expansions for the integers 14, 15, 16, 17, 18, 19 and 20 respectively and these are the only integers with 3 digits.
PROG
(Sage)
A=[1]
for i in [1..60]:
A.append(ceil(((7-6)/6)*sum(A)))
[7*x for x in A]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Hailey R. Olafson, Jul 21 2014
STATUS
approved