OFFSET
0,1
COMMENTS
The Mathematica program includes a graph. See A197133 for a guide to least x>0 satisfying sin(b*x)=(sin(c*x))^2 for selected b and c.
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 8.13 Calabi's triangle constant, p. 303.
LINKS
Eric Weisstein's MathWorld, Calabi's Triangle
EXAMPLE
x=0.68298269916008168797708085562538717075...
MATHEMATICA
b = 4; c = 1; f[x_] := Sin[x]
t = x /. FindRoot[f[b*x] == f[c*x]^2, {x, .5, 1}, WorkingPrecision -> 100]
RealDigits[t] (* A197267 *)
Plot[{f[b*x], f[c*x]^2}, {x, 0, Pi}]
RealDigits[ ArcCos[ Root[ 1 - 3# - 4#^2 + 8#^3 &, 3]], 10, 100] // First (* Jean-François Alcover, Feb 19 2013 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 12 2011
EXTENSIONS
Digits from a(91) on corrected by Jean-François Alcover, Feb 19 2013
STATUS
approved