OFFSET
0,1
COMMENTS
Least x>0 such that sin(bx)=cos(cx) (and also sin(cx)=cos(bx)), where b=2 and c=1/Pi; see the Mathematica program for a graph and A197682 for a discussion and guide to related sequences.
EXAMPLE
0.6775609836097499310089623865334568879498040...
MAPLE
evalf((Pi^2)/(2+4*Pi), 100); # Wesley Ivan Hurt, Feb 12 2017
MATHEMATICA
b = 2; c = 1/Pi;
t = x /. FindRoot[Sin[b*x] == Cos[c*x], {x, .6, .7}]
N[Pi/(2*b + 2*c), 110]
RealDigits[%] (* A197692 *)
Simplify[Pi/(2*b + 2*c)]
Plot[{Sin[b*x], Cos[c*x]}, {x, 0, 1}]
PROG
(PARI) Pi^2/(2+4*Pi) \\ Michel Marcus, Feb 13 2017
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 17 2011
STATUS
approved