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 A199468 #10 Feb 08 2025 09:59:41 %S A199468 2,1,8,5,9,8,5,9,9,6,7,8,6,2,2,7,3,7,3,3,4,5,4,3,3,5,9,6,3,5,7,7,0,0, %T A199468 1,5,7,3,3,8,5,6,4,6,1,7,1,9,8,5,6,8,9,9,3,7,5,9,8,8,2,9,6,1,5,5,6,6, %U A199468 1,5,2,7,3,2,9,5,3,3,0,5,1,8,9,5,6,6,8,4,6,2,2,6,4,2,4,7,4,7,0 %N A199468 Decimal expansion of x>0 satisfying x^2-3*x*sin(x)=cos(x). %C A199468 See A199429 for a guide to related sequences. The Mathematica program includes a graph. %H A199468 <a href="/index/Tra#transcendental">Index entries for transcendental numbers</a>. %e A199468 2.18598599678622737334543359635770015733... %t A199468 a = 1; b = -3; c = 1; %t A199468 f[x_] := a*x^2 + b*x*Sin[x]; g[x_] := c*Cos[x] %t A199468 Plot[{f[x], g[x]}, {x, -Pi, Pi}, {AxesOrigin -> {0, 0}}] %t A199468 r = x /. FindRoot[f[x] == g[x], {x, 2.18, 2.19}, WorkingPrecision -> 110] %t A199468 RealDigits[r] (* A199468 *) %Y A199468 Cf. A199429. %K A199468 nonn,cons %O A199468 1,1 %A A199468 _Clark Kimberling_, Nov 07 2011