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.

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

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