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.
Least positive solution of cos x - sin x = 1/2. - Clark Kimberling, May 28 2024
Least positive solution of sin(2x) = 3/4. - Alexandru Petrescu, Jul 10 2024
EXAMPLE
0.4240310394907405040264721694992090400...
MATHEMATICA
b = 6; c = 2; f[x_] := Sin[x]
t = x /. FindRoot[f[b*x] == f[c*x]^2, {x, .4, .6}, WorkingPrecision -> 100]
RealDigits[t] (* A197291 *)
Plot[{f[b*x], f[c*x]^2}, {x, 0, Pi/2}]
RealDigits[ ArcTan[ (4-Sqrt[7])/3 ], 10, 100] // First (* Jean-François Alcover, Feb 27 2013 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 13 2011
STATUS
approved