OFFSET
1,2
COMMENTS
See A195284 for definitions and a general discussion.
EXAMPLE
(A)=1.204499952438300422962677204955880425372499...
MATHEMATICA
a = Sqrt[3]; b = Sqrt[5]; c = Sqrt[8];
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) A195395 *)
N[x2, 100]
RealDigits[%] (* (B) A195396 *)
N[x3, 100]
RealDigits[%] (* (C) A195397 *)
N[(x1 + x2 + x3)/(a + b + c), 100]
RealDigits[%] (* Philo(ABC, I) A195398 *)
PROG
(PARI) 4*sqrt(15*sqrt(10)+60)/(sqrt(15)+2*sqrt(6)+4*sqrt(10)+13) \\ Charles R Greathouse IV, Apr 07 2026
(PARI) polrootsreal(9*x^10 - 4983*x^8 + 452992*x^6 - 2736896*x^4 + 491520*x^2 + 3686400)[5] \\ Charles R Greathouse IV, Apr 07 2026
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Sep 17 2011
STATUS
approved
