A014222 a(0) = 0; thereafter a(n+1) = 3^a(n).
0, 1, 3, 27, 7625597484987
Offset: 0
Examples
a(0) = H_4(3,-1)= 0; a(1) = H_4(3,0) = 1; a(2) = H_4(3,1) = 3; a(3) = H_4(3,2) = 3^3 = 27; a(4) = H_4(3,3) = 3^3^3 = 7625597484987; a(5) = H_4(3,4) = 3^3^3^3 = 3^7625597484987 > 10^3638334640025.
Programs
-
Mathematica
NestList[3^#&,0,4] (* Harvey P. Dale, Apr 04 2013 *)
Formula
a(n+1) = H_4(3,n) = 3^^n;
a(0) = 0, a(1) = 1, a(n+1) = 3^3^...^3 (n times).
Extensions
Revised using hyperoperation notation by Natan Arie Consigli, Jan 16 2016
Comments