OFFSET
0,1
COMMENTS
The Mathematica program includes a graph. See A197476 for a guide for the least x > 0 satisfying cos(b*x) = (cos(c*x))^2 for selected b and c.
Also the solution of the least x > 0 satisfying (cos(x))^2 + (sin(3x))^2 = 1/2. See A197739. - Clark Kimberling, Oct 19 2011
EXAMPLE
x=0.9218840880158607848199692488618106365729956...
MATHEMATICA
b = 6; c = 4; f[x_] := Cos[x]
t = x /. FindRoot[f[b*x] == f[c*x]^2, {x, .92, .93}, WorkingPrecision -> 100]
RealDigits[t] (* A197488 *)
Plot[{f[b*x], f[c*x]^2}, {x, 0, 1}]
RealDigits[ ArcCos[ Root[ -2 + 8#^2 - 6#^4 + #^6 & , 5]/2], 10, 99] // First (* Jean-François Alcover, Feb 19 2013 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 15 2011
EXTENSIONS
Digits from a(92) on corrected by Jean-François Alcover, Feb 19 2013
STATUS
approved