OFFSET
1,3
COMMENTS
See A195284 for definitions and a general discussion.
EXAMPLE
(C)=1.1847182944928008023884075593762398433974507...
MATHEMATICA
a = 1; b = 3; c = Sqrt[10]; 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[%] (* A195344 *)
N[x2, 100]
RealDigits[%] (* A195345 *)
N[x3, 100]
RealDigits[%] (* A195346 *)
N[(x1 + x2 + x3)/(a + b + c), 100]
RealDigits[%] (* A195347 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Sep 16 2011
STATUS
approved