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