login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A200683
Decimal expansion of the lesser of two values of x satisfying 4*x^2 = tan(x) and 0 < x < Pi/2.
3
2, 5, 5, 5, 8, 9, 9, 6, 6, 7, 4, 6, 5, 6, 7, 8, 0, 3, 4, 7, 1, 4, 1, 2, 6, 3, 3, 5, 3, 9, 8, 1, 4, 6, 8, 1, 1, 2, 6, 6, 8, 4, 4, 8, 9, 0, 5, 1, 8, 6, 6, 1, 0, 0, 4, 3, 1, 2, 6, 8, 2, 7, 5, 1, 1, 2, 5, 9, 0, 7, 0, 3, 1, 5, 8, 8, 6, 2, 4, 3, 2, 0, 4, 1, 9, 7, 0, 8, 5, 0, 2, 3, 4, 2, 3, 5, 1, 7, 5
OFFSET
0,1
COMMENTS
See A200614 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
lesser: 0.2555899667465678034714126335398146...
greater: 1.4529161609165145187427486875904483...
MATHEMATICA
a = 4; c = 0;
f[x_] := a*x^2 - c; g[x_] := Tan[x]
Plot[{f[x], g[x]}, {x, -.1, Pi/2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, .2, .3}, WorkingPrecision -> 110]
RealDigits[r](* A200683 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.4, 1.5}, WorkingPrecision -> 110]
RealDigits[r](* A200684 *)
CROSSREFS
Cf. A200614.
Sequence in context: A186501 A235452 A171438 * A286541 A078576 A256302
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 20 2011
STATUS
approved