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.

A197031 Decimal expansion of the shortest distance from x axis through (1,sqrt(2)) to y axis.

This page as a plain text file.
%I A197031 #7 Nov 08 2022 13:09:18
%S A197031 3,3,9,7,3,4,6,9,5,1,0,1,7,6,9,3,4,4,1,2,7,7,9,1,3,7,5,5,5,0,1,4,1,0,
%T A197031 7,9,0,4,8,9,4,8,3,4,8,7,5,2,7,1,7,7,6,3,8,3,9,0,1,6,2,1,4,8,3,4,9,4,
%U A197031 4,0,2,8,9,4,5,1,6,7,8,5,1,6,6,0,9,9,1,1,3,2,6,0,6,7,1,8,4,5,9,5
%N A197031 Decimal expansion of the shortest distance from x axis through (1,sqrt(2)) to y axis.
%C A197031 See A197008 for a discussion and guide to related sequences.
%e A197031 d=3.397346951017693441277913755501410790489483...
%e A197031 x-intercept=(2.2599...,0)
%e A197031 y-intercept=(0,2.5366...)
%p A197031 (1+2^(1/3))^(3/2) ; evalf(%) ; # _R. J. Mathar_, Nov 08 2022
%t A197031 f[x_] := x^2 + (k*x/(x - h))^2; t = h + (h*k^2)^(1/3);
%t A197031 h = 1; k = Sqrt[2]; d = N[f[t]^(1/2), 100]
%t A197031 RealDigits[d] (* A197031 *)
%t A197031 x = N[t] (* x-intercept *)
%t A197031 y = N[k*t/(t - h)] (* y-intercept *)
%t A197031 Show[Plot[k + k (x - h)/(h - t), {x, 0, t}],
%t A197031 ContourPlot[(x - h)^2 + (y - k)^2 == .001, {x, 0, 4}, {y, 0, 5}], PlotRange -> All, AspectRatio -> Automatic]
%Y A197031 Cf. A197008.
%K A197031 nonn,cons
%O A197031 1,1
%A A197031 _Clark Kimberling_, Oct 10 2011