login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A056072 a(n) = floor(e^e^ ... ^e), with n e's. 6
1, 2, 15, 3814279 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
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)
LINKS
MAPLE
p:= n-> `if`(n=0, 1, exp(1)^p(n-1)):
a:= n-> floor(p(n)):
seq(a(n), n=0..3); # Alois P. Heinz, Jul 20 2024
MATHEMATICA
Floor[NestList[Exp, 1, 3]] (* Vladimir Reshetnikov, Apr 29 2013 *)
PROG
(PARI) A056072(n, f=floor)=f(exp(if(n>0, A056072(n-1, x->x)))) \\ [M. F. Hasler, May 01 2013]
CROSSREFS
Sequence in context: A290042 A080911 A175981 * A294195 A175982 A136666
KEYWORD
nonn,changed
AUTHOR
Robert G. Wilson v, Jul 26 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 26 23:00 EDT 2024. Contains 374636 sequences. (Running on oeis4.)