OFFSET
-2
COMMENTS
The negative offset is chosen as to have Pi = sum(a(i)*b^-i, i=offset...+oo), with the base b=sqrt(3), cf. Example.
Sqrt(3) is the largest base of the form sqrt(n) < 2, such that the expansion of any number in this base has only digits 1 and 0 (which allows a condensed version of the expansion which lists only the positions of the nonzero digits, here: -2, 4, 7, 9, 12, 14, 17, 18, 24, 26, ...). Log(7) has this maximal property for bases of the form log(n).
LINKS
George Bergman, A number system with an irrational base, Math. Mag. 31 (1957), pp. 98-110.
EXAMPLE
Pi = sqrt(3)^2 + sqrt(3)^-4 + sqrt(3)^-7 + ... = [1,0,0;0,0,0,1,0,0,1,...]_{sqrt(3)}.
MATHEMATICA
RealDigits[Pi, Sqrt[3], 105][[1]] (* T. D. Noe, Mar 12 2014 *)
PROG
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Mar 12 2014
STATUS
approved