OFFSET
1,1
FORMULA
a(n) = 4*A072493(n).
EXAMPLE
a(3) = 4 because 320, 321, 322, and 323 are the base-4/3 expansions for the numbers 9, 10, 11, and 12 respectively and these are the only numbers with 3 digits.
PROG
(Sage)
A=[1]
for i in [1..60]:
A.append(ceil(((4-3)/3)*sum(A)))
[4*x for x in A]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Hailey R. Olafson, Jul 18 2014
STATUS
approved