OFFSET
1,2
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.
EXAMPLE
1.35240482842227855570354362892924164214...
MATHEMATICA
b = 2; c = Pi/6; f[x_] := Sin[x]
t = x /. FindRoot[f[b*x] == f[c*x]^2, {x, 1, 1.5}, WorkingPrecision -> 200]
RealDigits[t] (* A197331 *)
Plot[{f[b*x], f[c*x]^2}, {x, 0, 1.5}]
PROG
(PARI) solve(x=1, 2, sin(2*x)-sin(x*Pi/6)^2) \\ Charles R Greathouse IV, Jul 22 2026
CROSSREFS
KEYWORD
AUTHOR
Clark Kimberling, Oct 13 2011
STATUS
approved
