OFFSET
1,2
COMMENTS
The rectangle R whose shape (i.e., length/width) is (3+sqrt(9+12x))/6, where x=sqrt(3), can be partitioned into rectangles of shapes 1 and sqrt(3) in a manner that matches the periodic continued fraction [1, x, 1, x, ...]. R can also be partitioned into squares so as to match the nonperiodic continued fraction [1, 2, 2, 3, 1, 3, 2, 1, 1, 1, ...] at A190263. For details, see A188635.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000
EXAMPLE
1.409587966713294731518226466119659876240...
MATHEMATICA
r=3^(1/2)
FromContinuedFraction[{1, r, {1, r}}]
FullSimplify[%]
ContinuedFraction[%, 100] (* A190263 *)
RealDigits[N[%%, 120]] (* A190262 *)
N[%%%, 40]
RealDigits[(3 + Sqrt[9 + 12*Sqrt[3]])/6, 10, 100] (* G. C. Greubel, Dec 28 2017 *)
PROG
(PARI) (3 + sqrt(9 + 12*sqrt(3)))/6 \\ G. C. Greubel, Dec 28 2017
(Magma) [(3 + Sqrt(9 + 12*Sqrt(3)))/6]; // G. C. Greubel, Dec 28 2017
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, May 06 2011
STATUS
approved