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.

A198607 Decimal expansion of x < 0 satisfying 3*x^2 + 4*x = 2*sin(x).

This page as a plain text file.
%I A198607 #16 Apr 23 2025 12:49:23
%S A198607 7,2,3,2,9,3,0,7,1,3,3,5,8,5,3,3,3,5,5,3,5,0,3,6,4,9,3,2,0,9,7,8,9,7,
%T A198607 3,9,2,7,4,5,7,0,7,8,4,4,6,8,6,3,6,1,1,2,1,8,6,2,4,7,0,9,5,8,5,8,9,2,
%U A198607 7,1,6,0,6,5,6,3,9,9,5,8,3,0,5,0,9,6,3,5,9,8,5,3,8,2,7,8,0,0,4
%N A198607 Decimal expansion of x < 0 satisfying 3*x^2 + 4*x = 2*sin(x).
%C A198607 See A198414 for a guide to related sequences. The Mathematica program includes a graph.
%H A198607 G. C. Greubel, <a href="/A198607/b198607.txt">Table of n, a(n) for n = 0..10000</a>
%H A198607 <a href="/index/Tra#transcendental">Index entries for transcendental numbers</a>.
%e A198607 -0.723293071335853335535036493209789739274570...
%t A198607 a = 3; b = 4; c = 2;
%t A198607 f[x_] := a*x^2 + b*x; g[x_] := c*Sin[x]
%t A198607 Plot[{f[x], g[x]}, {x, -1, .1}]
%t A198607 r = x /. FindRoot[f[x] == g[x], {x, -.73, -.72}, WorkingPrecision -> 110]
%t A198607 RealDigits[r]  (* A198607 *)
%o A198607 (PARI) solve(x=-1, -0.5, 3*x^2 + 4*x - 2*sin(x)) \\ _Iain Fox_, Dec 26 2017
%Y A198607 Cf. A198414.
%K A198607 nonn,cons
%O A198607 0,1
%A A198607 _Clark Kimberling_, Oct 28 2011