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.

A200497 Decimal expansion of least x>0 satisfying 2*x^2-2*x+1=tan(x).

This page as a plain text file.
%I A200497 #8 Feb 07 2025 16:44:07
%S A200497 4,6,5,5,4,5,2,1,5,9,7,9,7,5,5,1,3,6,9,7,8,5,6,5,8,8,3,2,1,5,8,7,7,1,
%T A200497 4,8,5,8,7,0,5,2,3,1,4,9,5,1,7,6,6,5,9,0,6,7,6,8,7,6,8,9,1,1,0,9,3,7,
%U A200497 2,9,9,5,7,1,3,1,9,6,8,7,7,7,8,3,8,1,5,8,4,2,5,8,0,6,1,3,6,0,4
%N A200497 Decimal expansion of least x>0 satisfying 2*x^2-2*x+1=tan(x).
%C A200497 See A200338 for a guide to related sequences. The Mathematica program includes a graph.
%e A200497 x=0.465545215979755136978565883215877148587052...
%t A200497 a = 2; b = -2; c = 1;
%t A200497 f[x_] := a*x^2 + b*x + c; g[x_] := Tan[x]
%t A200497 Plot[{f[x], g[x]}, {x, -.1, Pi/2}, {AxesOrigin -> {0, 0}}]
%t A200497 r = x /. FindRoot[f[x] == g[x], {x, 1.4, 1.5}, WorkingPrecision -> 110]
%t A200497 RealDigits[r]    (* A200497 *)
%Y A200497 Cf. A200338.
%K A200497 nonn,cons
%O A200497 0,1
%A A200497 _Clark Kimberling_, Nov 19 2011