cp's OEIS Frontend

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.

A199465 Decimal expansion of greatest x satisfying x^2-3*x*sin(x)=-2*cos(x).

This page as a plain text file.
%I A199465 #9 Feb 08 2025 09:58:54
%S A199465 2,4,7,9,8,1,6,1,6,7,5,8,0,7,5,2,6,9,9,1,5,6,8,6,7,4,4,6,0,3,4,3,4,4,
%T A199465 2,9,3,2,3,8,5,7,1,2,5,0,4,0,5,9,8,1,6,9,3,3,8,7,5,4,6,4,0,9,5,3,5,6,
%U A199465 6,7,0,9,3,5,5,4,0,8,7,6,2,9,5,8,9,3,1,1,9,0,5,5,3,8,6,2,9,0,7
%N A199465 Decimal expansion of greatest x satisfying x^2-3*x*sin(x)=-2*cos(x).
%C A199465 See A199429 for a guide to related sequences. The Mathematica program includes a graph.
%H A199465 <a href="/index/Tra#transcendental">Index entries for transcendental numbers</a>.
%e A199465 2.4798161675807526991568674460343442932...
%t A199465 a = 1; b = -3; c = -2;
%t A199465 f[x_] := a*x^2 + b*x*Sin[x]; g[x_] := c*Cos[x]
%t A199465 Plot[{f[x], g[x]}, {x, -Pi, Pi}, {AxesOrigin -> {0, 0}}]
%t A199465 r = x /. FindRoot[f[x] == g[x], {x, 2.47, 2.48}, WorkingPrecision -> 110]
%t A199465 RealDigits[r]  (* A199465 greatest root *)
%Y A199465 Cf. A199429.
%K A199465 nonn,cons
%O A199465 1,1
%A A199465 _Clark Kimberling_, Nov 07 2011