OFFSET
0,1
COMMENTS
Least x>0 such that sin(bx)=cos(cx) (and also sin(cx)=cos(bx)), where b=3 and c=1/Pi; see the Mathematica program for a graph and A197682 for a discussion and guide to related sequences.
EXAMPLE
0.4733724036248419226997007643761582658652643123...
MAPLE
Digits:=100: evalf(Pi^2/(2+6*Pi)); # Wesley Ivan Hurt, Nov 08 2014
MATHEMATICA
b = 3; c = 1/Pi;
t = x /. FindRoot[Sin[b*x] == Cos[c*x], {x, .15, .17}]
N[Pi/(2*b + 2*c), 110]
RealDigits[%] (* A197697 *)
Simplify[Pi/(2*b + 2*c)]
Plot[{Sin[b*x], Cos[c*x]}, {x, 0, Pi}]
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 17 2011
STATUS
approved