OFFSET
0,1
COMMENTS
Least x>0 such that sin(bx)=cos(cx) (and also sin(cx)=cos(bx)), where b=2 and c=2/pi; see the Mathematica program for a graph and A197682 for a discussion and guide to related sequences.
EXAMPLE
x=0.59576141514875427327955317355865250501468575843...
MATHEMATICA
b = 2; c = 2/Pi;
t = x /. FindRoot[Sin[b*x] == Cos[c*x], {x, .5, .6}]
N[Pi/(2*b + 2*c), 110]
RealDigits[%] (* A197693 *)
Simplify[Pi/(2*b + 2*c)]
Plot[{Sin[b*x], Cos[c*x]}, {x, 0, Pi/2}]
RealDigits[Pi^2/(4+4*Pi), 10, 120][[1]] (* Harvey P. Dale, Nov 27 2022 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 17 2011
STATUS
approved