This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A200417 #6 Feb 07 2025 16:44:07 %S A200417 1,5,0,4,5,0,6,5,2,0,3,1,8,8,7,6,0,0,5,8,6,5,8,4,8,1,1,9,7,6,6,0,4,3, %T A200417 8,0,5,4,8,7,2,2,6,6,3,0,9,7,9,0,8,7,9,5,2,9,7,5,5,3,9,1,1,3,3,5,2,0, %U A200417 5,5,1,9,3,2,5,3,3,8,7,9,2,9,6,1,8,4,0,7,5,5,5,5,6,4,1,4,6,0,8 %N A200417 Decimal expansion of least x>0 satisfying 4*x^2+2*x+3=tan(x). %C A200417 See A200338 for a guide to related sequences. The Mathematica program includes a graph. %e A200417 x=1.5045065203188760058658481197660438054872266309790... %t A200417 a = 4; b = 2; c = 3; %t A200417 f[x_] := a*x^2 + b*x + c; g[x_] := Tan[x] %t A200417 Plot[{f[x], g[x]}, {x, -.1, Pi/2}, {AxesOrigin -> {0, 0}}] %t A200417 r = x /. FindRoot[f[x] == g[x], {x, 1.5, 1.51}, WorkingPrecision -> 110] %t A200417 RealDigits[r] (* A200417 *) %Y A200417 Cf. A200338. %K A200417 nonn,cons %O A200417 1,2 %A A200417 _Clark Kimberling_, Nov 18 2011