A321312 A(n,k) = n^^k is the k-th tetration of n; square array A(n,k), n>=0, k>=0, read by antidiagonals.
1, 0, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 4, 3, 1, 0, 1, 16, 27, 4, 1, 1, 1, 65536, 7625597484987, 256, 5, 1
Offset: 0
Examples
Square array A(n,k) begins: 1, 0, 1, 0, 1, 0, 1, ... 1, 1, 1, 1, 1, 1, 1, ... 1, 2, 4, 16, 65536, ... 1, 3, 27, 7625597484987, ... 1, 4, 256, ... 1, 5, 3125, ... 1, 6, 46656, ... 1, 7, 823543, ... ...
Links
- Eric Weisstein's World of Mathematics, Power Tower
- Wikipedia, Knuth's up-arrow notation
- Wikipedia, Tetration
- Index entries for sequences related to tetration
Crossrefs
Programs
-
Maple
A:= (n, k)-> `if`(k=0, 1, n^A(n, k-1)): seq(seq(A(n, d-n), n=0..d), d=0..6);