OFFSET
0,1
COMMENTS
See A195284 for definitions and a general discussion.
EXAMPLE
(A)=0.7578747639260239988121867474270095303467925401944...
(A)=(4*sqrt(6-3*sqrt(3)))/(3+sqrt(3))
(B)=2-(2/3)sqrt(3)
(C)=sqrt(6)-sqrt(2)
MATHEMATICA
a = 1; b = Sqrt[3]; c = 2;
f = 2 a*b/(a + b + c);
x1 = Simplify[f*Sqrt[a^2 + (b + c)^2]/(b + c) ]
x2 = Simplify[f*Sqrt[b^2 + (c + a)^2]/(c + a) ]
x3 = f*Sqrt[2]
N[x1, 100]
RealDigits[%] (* (A) A195348 *)
N[x2, 100]
RealDigits[%] (* (B) A093821 *)
N[x3, 100]
RealDigits[%] (* (C) A120683 *)
N[(x1 + x2 + x3)/(a + b + c), 100]
RealDigits[%] (* A195380 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Sep 17 2011
STATUS
approved