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.

A199962 Decimal expansion of greatest x satisfying x^2 + 3*cos(x) = 4*sin(x).

This page as a plain text file.
%I A199962 #15 Feb 08 2025 23:06:22
%S A199962 2,2,3,5,8,0,9,2,8,2,0,6,4,5,6,9,1,2,1,1,1,5,2,6,4,1,4,8,3,1,7,0,1,9,
%T A199962 8,4,4,2,4,8,0,4,9,2,0,3,9,2,6,5,3,9,0,4,0,4,3,4,1,5,0,9,1,3,0,2,6,0,
%U A199962 5,2,4,8,0,6,1,5,1,6,5,3,9,7,5,3,5,0,8,8,3,7,8,7,4,1,9,3,2,6,9
%N A199962 Decimal expansion of greatest x satisfying x^2 + 3*cos(x) = 4*sin(x).
%C A199962 See A199949 for a guide to related sequences. The Mathematica program includes a graph.
%H A199962 G. C. Greubel, <a href="/A199962/b199962.txt">Table of n, a(n) for n = 1..10000</a>
%H A199962 <a href="/index/Tra#transcendental">Index entries for transcendental numbers</a>.
%e A199962 least x:  0.7589622035176968518571982860561050925949...
%e A199962 greatest x: 2.23580928206456912111526414831701984424...
%t A199962 a = 1; b = 3; c = 4;
%t A199962 f[x_] := a*x^2 + b*Cos[x]; g[x_] := c*Sin[x]
%t A199962 Plot[{f[x], g[x]}, {x, -1, 3}, {AxesOrigin -> {0, 0}}]
%t A199962 r = x /. FindRoot[f[x] == g[x], {x, .75, .76}, WorkingPrecision -> 110]
%t A199962 RealDigits[r]   (* A199961 *)
%t A199962 r = x /. FindRoot[f[x] == g[x], {x, 2.2, 2.3}, WorkingPrecision -> 110]
%t A199962 RealDigits[r]   (* A199962 *)
%o A199962 (PARI) a=1; b=3; c=4; solve(x=2, 3, a*x^2 + b*cos(x) - c*sin(x)) \\ _G. C. Greubel_, Jun 23 2018
%Y A199962 Cf. A199949.
%K A199962 nonn,cons
%O A199962 1,1
%A A199962 _Clark Kimberling_, Nov 12 2011