OFFSET
1,1
COMMENTS
The 2nd electrum rectangle is introduced here as a rectangle whose length L and width W satisfy L/W=1+sqrt(3). The name of this shape refers to the alloy of gold and silver known as electrum, in view of the existing names "golden rectangle" and "silver rectangle" and these continued fractions:
golden ratio: L/W=[1,1,1,1,1,1,1,1,1,1,1,...]
silver ratio: L/W=[2,2,2,2,2,2,2,2,2,2,2,...]
1st electrum ratio: L/W=[1,2,1,2,1,2,1,2,...]
2nd electrum ratio: L/W=[2,1,2,1,2,1,2,1,...].
Recall that removal of 1 square from a golden rectangle leaves a golden rectangle, and that removal of 2 squares from a silver rectangle leaves a silver rectangle. Removal of a square from a 1st electrum rectangle leaves a silver rectangle; removal of 2 squares from a 2nd electrum rectangle leaves a golden rectangle.
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 3.13 Steinitz Constants, p. 241.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000
Clark Kimberling, A Visual Euclidean Algorithm, The Mathematics Teacher 76 (1983) 108-109.
FORMULA
Equals sqrt(5+2*sqrt(3)).
EXAMPLE
(diagonal/shortest side) = 2.9093129111764094646 approximately.
MATHEMATICA
h = 1 + 3^(1/2); r = (1 + h^2)^(1/2)
FullSimplify[r]
N[r, 130] (* ratio of diagonal h to shortest side; h=[1, 2, 1, 2, 1, 2, ...] *)
RealDigits[N[r, 130]][[1]]
RealDigits[Sqrt[5 + 2*Sqrt[3]], 10, 100][[1]] (* G. C. Greubel, Nov 02 2018 *)
PROG
(PARI) default(realprecision, 100); sqrt(5+2*sqrt(3)) \\ G. C. Greubel, Nov 02 2018
(Magma) SetDefaultRealField(RealField(100)); Sqrt(5+2*Sqrt(3)); // G. C. Greubel, Nov 02 2018
CROSSREFS
KEYWORD
AUTHOR
Clark Kimberling, Apr 06 2011
STATUS
approved