OFFSET
0,1
COMMENTS
Least x > 0 such that sin(b*x) = cos(c*x) (and also sin(c*x) = cos(b*x)), where b=1/2 and c=Pi; see the Mathematica program for a graph and A197682 for a discussion and guide to related sequences.
EXAMPLE
0.4313487191507935144267938371456753323979...
MATHEMATICA
b = 1/2; c = Pi;
t = x /. FindRoot[Sin[b*x] == Cos[c*x], {x, .43, .44}]
N[Pi/(2*b + 2*c), 110]
RealDigits[%] (* A197700 *)
Simplify[Pi/(2*b + 2*c)]
Plot[{Sin[b*x], Cos[c*x]}, {x, 0, 1}]
RealDigits[Pi/(1+2 Pi), 10, 120][[1]] (* Harvey P. Dale, Mar 31 2023 *)
PROG
(PARI) 1/(1/Pi+2) \\ Charles R Greathouse IV, Sep 30 2022
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 17 2011
STATUS
approved