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.

A179947 Continued fraction for gamma^Pi.

Original entry on oeis.org

0, 5, 1, 1, 1, 1, 1, 2, 1, 7, 1, 1, 36, 2, 1, 1, 56, 2, 44, 1, 1, 1, 34, 3, 5, 1, 1, 1, 15, 3, 1, 2, 12, 2, 4, 2, 17, 4, 2, 1, 2, 2, 2, 1, 1, 1, 29, 6, 1, 4, 1, 3, 1, 1, 4, 3, 2, 1, 3, 1076, 17, 3, 49, 1, 2, 2, 2, 3, 20, 4, 13, 3, 2, 90, 1, 1, 2, 12, 2, 1, 3, 1, 7, 1, 10, 1, 2, 1, 2, 4, 206, 2, 2, 1, 6
Offset: 0

Views

Author

Michel Lagneau, Aug 03 2010

Keywords

Examples

			gamma^Pi = 0.1779186832897647510663236... = 0 + 1/(5 + 1/(1 + 1/(1 + 1/(1 + ...)))).
		

Crossrefs

Cf. A182470.

Programs

  • Maple
    with(numtheory): Digits := 300: convert(evalf(gamma(0)^Pi), confrac);
  • Mathematica
    ContinuedFraction[EulerGamma^Pi,100] (* Harvey P. Dale, Aug 19 2022 *)
  • PARI
    contfrac(Euler^Pi) \\ Michel Marcus, Oct 11 2017