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