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.

A199053 Decimal expansion of greatest x satisfying x^2+3*sin(x)=-1.

This page as a plain text file.
%I A199053 #8 Feb 07 2025 16:44:05
%S A199053 3,9,5,8,0,9,2,3,4,4,6,9,1,3,7,8,3,7,5,8,2,5,4,7,9,9,4,3,4,0,5,2,1,8,
%T A199053 9,2,5,2,3,5,7,9,4,8,7,5,1,2,6,5,5,7,7,0,9,3,7,9,1,5,1,6,5,3,6,3,6,5,
%U A199053 2,8,5,8,6,7,4,8,6,5,4,0,4,5,7,4,0,3,0,5,1,1,4,2,7,0,4,0,3,1,9
%N A199053 Decimal expansion of greatest x satisfying x^2+3*sin(x)=-1.
%C A199053 See A198866 for a guide to related sequences. The Mathematica program includes a graph.
%H A199053 <a href="/index/Tra#transcendental">Index entries for transcendental numbers</a>.
%e A199053 least: -1.39840306895670428191362107010033086...
%e A199053 greatest:  -0.3958092344691378375825479943405218925...
%t A199053 a = 1; b = 3; c = -1;
%t A199053 f[x_] := a*x^2 + b*Sin[x]; g[x_] := c
%t A199053 Plot[{f[x], g[x]}, {x, -3, 2}, {AxesOrigin -> {0, 0}}]
%t A199053 r = x /. FindRoot[f[x] == g[x], {x, -1.4, -1.3}, WorkingPrecision -> 110]
%t A199053 RealDigits[r] (* A199052 *)
%t A199053 r = x /. FindRoot[f[x] == g[x], {x, -.4, -.3}, WorkingPrecision -> 110]
%t A199053 RealDigits[r] (* A199053 *)
%Y A199053 Cf. A198866.
%K A199053 nonn,cons
%O A199053 0,1
%A A199053 _Clark Kimberling_, Nov 02 2011