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.

A197846 Decimal expansion of greatest x having x^2+2x=3*cos(x).

This page as a plain text file.
%I A197846 #6 Feb 07 2025 16:44:04
%S A197846 7,7,3,6,9,6,1,8,9,2,4,3,8,0,9,4,2,1,7,1,4,7,3,9,0,5,3,5,3,0,4,5,3,3,
%T A197846 3,6,8,0,5,7,2,1,2,5,6,8,2,4,5,8,2,4,0,7,9,1,1,0,4,5,4,2,4,9,8,1,2,9,
%U A197846 4,1,0,7,6,2,5,1,4,0,0,5,2,7,0,1,6,9,0,0,6,3,8,8,0,4,0,8,2,8,2
%N A197846 Decimal expansion of greatest x having x^2+2x=3*cos(x).
%C A197846 See A197737 for a guide to related sequences. The Mathematica program includes a graph.
%e A197846 least x: -1.72807808625314217139724543242476826...
%e A197846 greatest x: 0.773696189243809421714739053530453...
%t A197846 a = 1; b = 2; c = 3;
%t A197846 f[x_] := a*x^2 + b*x; g[x_] := c*Cos[x]
%t A197846 Plot[{f[x], g[x]}, {x, -2, 1}]
%t A197846 r1 = x /. FindRoot[f[x] == g[x], {x, -1.8, -1.7}, WorkingPrecision -> 110]
%t A197846 RealDigits[r1]  (* A197845 *)
%t A197846 r2 = x /. FindRoot[f[x] == g[x], {x, .77, .78}, WorkingPrecision -> 110]
%t A197846 RealDigits[r2] (* A197846 *)
%Y A197846 Cf. A197737.
%K A197846 nonn,cons
%O A197846 0,1
%A A197846 _Clark Kimberling_, Oct 20 2011