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