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.

Showing 1-2 of 2 results.

A056072 a(n) = floor(e^e^ ... ^e), with n e's.

Original entry on oeis.org

1, 2, 15, 3814279
Offset: 0

Views

Author

Robert G. Wilson v, Jul 26 2000

Keywords

Comments

The next term is too large to include.
From Vladimir Reshetnikov, Apr 27 2013: (Start)
a(4) = 2331504399007195462289689911...2579139884667434294745087021 (1656521 decimal digits in total), given by initial segment of A085667.
a(5) has more than 10^10^6 decimal digits.
a(6) has more than 10^10^10^6 decimal digits. (End)

Crossrefs

Programs

A225053 Second terms of continued fractions for power towers e, e^e, e^e^e, ...

Original entry on oeis.org

1, 6, 9, 4
Offset: 1

Views

Author

Vladimir Reshetnikov, Apr 25 2013

Keywords

Comments

It was conjectured (but remains unproved) that none of the power towers e, e^e, e^e^e, ... are integers. If so, the corresponding continued fractions contain at least 2 terms. If the conjecture fails, let the corresponding a(n) = 0.

Examples

			a(3) = 9 because floor(1/frac(e^e^e)) = 9, since e^e^e ~ 3814279.10476.
		

Crossrefs

A056072 yields the first term of the continued fraction.

Programs

  • Mathematica
    $MaxExtraPrecision = Infinity; terms = 4; Map[Function[x, ContinuedFraction[x, 2][[2]]], NestList[Exp, E, terms - 1]]
Showing 1-2 of 2 results.