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!)
A133376 a(n) = (...((2^3)^4)^...)^n. 1

%I #26 Jan 17 2024 12:19:05

%S 2,8,4096,1152921504606846976,

%T 2348542582773833227889480596789337027375682548908319870707290971532209025114608443463698998384768703031934976

%N a(n) = (...((2^3)^4)^...)^n.

%C Another kind of exponential factorial.

%C See cross-references for other possible definitions of exponential factorials.

%C Some other terms of the sequence can be computed, but they are quite large and it wouldn't be very convenient to display them.

%C The next term has 759 digits. - _Harvey P. Dale_, Oct 22 2019

%H Alois P. Heinz, <a href="/A133376/b133376.txt">Table of n, a(n) for n = 2..7</a>

%F a(n) = 2^(n!/2) for n >= 2. - _Karl W. Heuer_, Nov 25 2014

%e a(4) = 4096, as (2^3)^4 = 4096.

%p expfact:= proc(n::integer) local i,res; res:=2; for i from 3 to n do res:=(res)^i od; res end proc; seq(expfact(n), n=2..7);

%p # second Maple program:

%p a:= proc(n) option remember;

%p `if`(n<3, n, a(n-1)^n)

%p end:

%p seq(a(n), n=2..6); # _Alois P. Heinz_, Jan 17 2024

%t nxt[{n_,a_}]:={n+1,a^(n+1)}; NestList[nxt,{2,2},4][[All,2]] (* _Harvey P. Dale_, Oct 22 2019 *)

%Y Cf. A124075, A049384.

%K nonn

%O 2,1

%A Pierre Karpman (pierre.karpman(AT)laposte.net), Oct 28 2007

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 April 19 02:28 EDT 2024. Contains 371782 sequences. (Running on oeis4.)