[go: up one dir, main page]

login
A200416
Decimal expansion of least x>0 satisfying 4*x^2+2*x+1=tan(x).
2
1, 4, 9, 3, 4, 8, 5, 1, 6, 4, 0, 7, 9, 5, 5, 2, 7, 7, 4, 1, 5, 5, 5, 7, 8, 7, 6, 8, 9, 1, 5, 0, 5, 7, 0, 6, 5, 3, 6, 0, 1, 6, 4, 3, 2, 6, 6, 1, 4, 3, 9, 6, 3, 9, 3, 8, 2, 4, 8, 3, 1, 2, 5, 5, 6, 6, 5, 2, 8, 1, 0, 5, 4, 0, 1, 5, 2, 9, 6, 8, 6, 7, 5, 4, 2, 7, 2, 6, 7, 8, 3, 6, 1, 6, 1, 2, 5, 6, 8
OFFSET
1,2
COMMENTS
See A200338 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
x=1.493485164079552774155578768915057065360164326614396...
MATHEMATICA
a = 4; b = 2; c = 1;
f[x_] := a*x^2 + b*x + 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, 1.4, 1.5}, WorkingPrecision -> 110]
RealDigits[r] (* A200416 *)
CROSSREFS
Cf. A200338.
Sequence in context: A217316 A159628 A102753 * A199178 A318331 A198828
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Nov 18 2011
STATUS
approved