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.

A004002 Benford numbers: a(n) = e^e^...^e (n times) rounded to nearest integer.

Original entry on oeis.org

1, 3, 15, 3814279
Offset: 0

Views

Author

Keywords

Comments

The next term, a(4) ~ 2.3315*10^1656520, has 1656521 decimal digits and is therefore too large to be included. [Rephrased by M. F. Hasler, May 01 2013]
Named by Turner (1991) after the American electrical engineer and physicist Frank Albert Benford, Jr. (1883-1948). - Amiram Eldar, Jun 26 2021

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A073236. - Melissa O'Neill, Jul 04 2015

Programs

  • Maple
    p:= n-> `if`(n=0, 1, exp(1)^p(n-1)):
    a:= n-> round(p(n)):
    seq(a(n), n=0..3);  # Alois P. Heinz, Jul 20 2024
  • Mathematica
    Round[NestList[Power[E, #] &, 1, 3]] (* Melissa O'Neill, Jul 04 2015 *)

Formula

a(n) = round(e^e^...^e), where e occurs n times, a(0) = 1 (= e^0). - Melissa O'Neill, Jul 04 2015