A304272 The largest even integer that can be written with n digits in base 3/2.
2, 21, 212, 2122, 21221, 212211, 2122111, 21221112, 212211122, 2122111221, 21221112212, 212211122121, 2122111221211, 21221112212112, 212211122121122, 2122111221211221, 21221112212112212, 212211122121122121, 2122111221211221212, 21221112212112212121, 212211122121122121211, 2122111221211221212112
Offset: 1
Examples
The number 4 in base 3/2 is 21, and number 6 is 210. Therefore, 21 is the largest even integer with 2 digits in base 3/2.
Links
- B. Chen, R. Chen, J. Guo, S. Lee et al., On Base 3/2 and its Sequences, arXiv:1808.04304 [math.NT], 2018.
Programs
-
Mathematica
Table[StringTake["212211122121122121211221211212112", n], {n, 32}]
Comments