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.

A064411 Increasing partial quotients of e^gamma.

This page as a plain text file.
%I A064411 #9 Jun 07 2023 10:29:56
%S A064411 1,3,5,7,9,16,59,100,129,314,2294,1568705
%N A064411 Increasing partial quotients of e^gamma.
%D A064411 Ronald L. Graham, D. E. Knuth and Oren Patashnik, "Concrete Mathematics, A Foundation for Computer Science," Addison-Wesley Publishing Co., Reading, MA, 1989, page 540.
%H A064411 Richard P. Brent, <a href="https://doi.org/10.1090/S0025-5718-1977-0436547-7">Computation of the regular continued fraction for Euler's constant</a>, Mathematics of Computation 31 (1977), pages 771-777.
%t A064411 t1 = ContinuedFraction[ E^EulerGamma, 10^5 ]; a = 0; Do[ If[ t1[ [ n ] ] > a, a = t1[ [ n ] ]; Print[ a ] ], {n, 1, 10^5} ]
%Y A064411 Cf. A073004 (e^gamma), A094644 (continued fraction).
%K A064411 nonn,more
%O A064411 1,2
%A A064411 _Robert G. Wilson v_, Sep 29 2001