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.

A198934 Decimal expansion of x>0 satisfying 3*x^2-3*cos(x)=2.

This page as a plain text file.
%I A198934 #8 Feb 07 2025 17:52:32
%S A198934 1,0,7,0,6,2,6,5,4,4,0,2,0,8,2,7,3,2,3,0,9,3,1,1,9,2,9,2,3,6,5,1,7,1,
%T A198934 9,8,1,4,6,0,6,5,6,1,7,4,5,2,7,8,3,7,7,1,8,4,2,6,4,1,4,2,8,0,1,2,1,4,
%U A198934 8,2,5,9,9,5,7,1,3,1,6,1,2,0,8,2,1,3,3,6,7,9,5,6,5,5,5,1,6,7,1
%N A198934 Decimal expansion of x>0 satisfying 3*x^2-3*cos(x)=2.
%C A198934 See A198755 for a guide to related sequences. The Mathematica program includes a graph.
%H A198934 <a href="/index/Tra#transcendental">Index entries for transcendental numbers</a>.
%e A198934 1.0706265440208273230931192923651719814606561...
%t A198934 a = 3; b = -3; c = 2;
%t A198934 f[x_] := a*x^2 + b*Cos[x]; g[x_] := c
%t A198934 Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}]
%t A198934 r = x /. FindRoot[f[x] == g[x], {x, 1.07, 1.08}, WorkingPrecision -> 110]
%t A198934 RealDigits[r] (* A198934 *)
%Y A198934 Cf. A198755.
%K A198934 nonn,cons
%O A198934 1,3
%A A198934 _Clark Kimberling_, Nov 01 2011