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