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.

A199057 Decimal expansion of x>0 satisfying x^2+3*sin(x)=2.

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