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.

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

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