OFFSET
0,1
COMMENTS
a(n) is a prefix of a(n+1).
The smallest, not necessarily even, integer in base 3/2 with n digits is a(n-1) with 0 added at the end.
LINKS
B. Chen, R. Chen, J. Guo, S. Lee et al., On Base 3/2 and its Sequences, arXiv:1808.04304 [math.NT], 2018.
FORMULA
EXAMPLE
The number 5 in base 3/2 is 22, and the number 6 is 210. Therefore, 210 is the smallest even integer with 3 digits in base 3/2.
MAPLE
roll32 := proc(L)
local piv, L1 ;
piv := 1;
L1 := subsop(piv=op(piv, L)+1, L) ;
while op(piv, L1) >= 3 do
L1 := [seq(0, i=1..piv), op(piv+1, L1)+1, seq(op(i, L1), i=piv+2..nops(L1))] ;
piv := piv+1 ;
end do:
L1 ;
end proc:
from32 := proc(L)
add( op(i, L)*(3/2)^(i-1), i=1..nops(L)) ;
end proc:
A303500 := proc(n)
local dgs ;
dgs := [seq(0, i=1..n-1), 1] ;
while not type(from32(dgs), 'even') do
dgs := roll32(dgs) ;
end do:
dgs := ListTools[Reverse](dgs) ;
digcatL(%) ;
end proc: # R. J. Mathar, Jun 25 2018
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Tanya Khovanova and PRIMES STEP Senior group, May 09 2018
STATUS
approved