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 A200592 #6 Feb 07 2025 16:44:07 %S A200592 1,4,3,4,7,7,0,7,3,1,0,6,3,2,9,7,3,2,6,1,4,9,8,6,0,0,4,3,7,9,2,2,0,2, %T A200592 6,8,8,7,4,2,9,8,9,3,1,5,1,6,7,0,6,1,3,8,9,5,5,3,0,5,6,0,9,7,8,1,7,1, %U A200592 0,5,0,1,2,0,2,7,5,1,2,1,3,2,7,8,1,6,2,3,5,6,6,5,3,5,0,0,2,2,0 %N A200592 Decimal expansion of least x>0 satisfying 3*x^2-2*x+4=tan(x). %C A200592 See A200338 for a guide to related sequences. The Mathematica program includes a graph. %e A200592 x=1.43477073106329732614986004379220268874298... %t A200592 a = 3; b = -2; c = 4; %t A200592 f[x_] := a*x^2 + b*x + c; g[x_] := Tan[x] %t A200592 Plot[{f[x], g[x]}, {x, -.1, Pi/2}, {AxesOrigin -> {0, 0}}] %t A200592 r = x /. FindRoot[f[x] == g[x], {x, 1.4, 1.5}, WorkingPrecision -> 110] %t A200592 RealDigits[r] (* A200592 *) %Y A200592 Cf. A200338. %K A200592 nonn,cons %O A200592 1,2 %A A200592 _Clark Kimberling_, Nov 19 2011