The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A171881 Square array, read by antidiagonals, where T(n,k)=n^^k for n>=0, k>=1. 1
0, 1, 1, 2, 1, 1, 3, 4, 1, 1, 4, 27, 16, 1, 1, 5, 256, 19683, 256, 1, 1, 6, 3125, 4294967296, 7625597484987, 65536, 1, 1, 7, 46656, 298023223876953125, 340282366920938463463374607431768211456 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
n^^k is defined the left-associative way: n^^2=n^n, n^^3=(n^n)^n=n^(n^2), n^^4=((n^n)^n)^n=n^(n^3), and in general n^^k=n^(n^(k-1)).
More terms on Munafo website.
LINKS
EXAMPLE
Array begins:
0,1,1,1,1,1,...
1,1,1,1,1,1,...
2,4,16,256,65536,...
3,27,19683,...
4,256,4294967296,...
5,3125,...
6,46656,...
MATHEMATICA
T[n_, k_] := If[n == 0, Boole[k != 0], n^(n^k)]; Table[T[k, n - k], {n, 0, 7}, {k, n, 0, -1}] // Flatten (* Amiram Eldar, Oct 29 2021 *)
CROSSREFS
Cf. A171882.
Sequence in context: A104495 A093541 A336187 * A321877 A320251 A210341
KEYWORD
nonn,tabl
AUTHOR
Robert Munafo, Jan 21 2010
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 June 4 15:24 EDT 2024. Contains 373099 sequences. (Running on oeis4.)