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.

A198923 Decimal expansion of x>0 satisfying 4*x^2+cos(x)=2.

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