A094083 Numerators of ratio of sides of n-th triple of rectangles of unit area sum around a triangle.
1, 1, 1, 4, 9, 64, 25, 256, 1225, 16384, 3969, 65536, 53361, 1048576, 184041, 4194304, 41409225, 1073741824, 147744025, 4294967296, 2133423721, 68719476736, 7775536041, 274877906944, 457028729521, 17592186044416, 1690195005625
Offset: 1
Examples
a(5) = a(5-2)*((5-2)/(5-1))^2 = 1/4*(3/4)^2 = 9/64
Links
- Paul Yiu, EuclideanGeometry Notes
Programs
-
Mathematica
a[n_]:=If[OddQ[n], ((n/2-1)!)^2/(Pi*((n/2-1/2)!)^2), Pi*((n/2-1)!)^2/(12*((n/2-1/2)!)^2)] a[n_]:=If[OddQ[n], (2^(1-n)*(n-2)!!^2)/((n-1)/2)!^2, (2^(n-2)*((n-2)/2)!^2)/(3*(n-1)!!^2)] a[n_]:=((12+Pi^2+E^(I*n*Pi)*(Pi^2-12))*((n/2-1)!)^2)/(24*Pi*((n/2-1/2)!)^2) (CoefficientList[Series[(I*x*(6+Sqrt[3]*Pi)-2*x*Sqrt[3]*Log[x+Sqrt[x^2-1]])/(6*Sqrt[x^2-1]), {x, 0, 20}], x])^2
Formula
a(n)=a(n-2)*((n-2)/(n-1))^2, a(1)=1, a(2)=1/3. a(n)=((n/2-1)!)^2/(Pi*((n/2-1/2)!)^2) for n odd. a(n)=(2^(1-n)*(n-2)!!^2)/((n-1)/2)!^2 for n odd. a(n)=Pi*((n/2-1)!)^2/(12*((n/2-1/2)!)^2) for n even. a(n)=(2^(n-2)*((n-2)/2)!^2)/(3*(n-1)!!^2) for n even.
Comments