OFFSET
1,2
COMMENTS
The creator of the test asked me to remove this sequence. But one of the reasons for creating this database was to help people do these tests. This was stated already in the 1973 Handbook of Integer Sequences. Many sequences in the database have appeared on IQ tests.
LINKS
P. Cooijmans, Test for Genius (Short Form) [broken link]
Paul Cooijmans, Numbers.
Paul Cooijmans, Short Test For Genius.
EXAMPLE
a(1) = 1^(1^(1^(1^1))) = 1.
a(2) = 2^(2^(2^2)) = 2^16.
a(3) = 3^(3^3) = 3^27.
a(4) = 4^4.
a(5) = 5.
MAPLE
b:= (n, i)-> `if`(i=0, 1, n^b(n, i-1)):
a:= n-> b(n, 6-n):
seq(a(n), n=1..5); # Alois P. Heinz, Aug 22 2017
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Sent in by an anonymous correspondent.
EXTENSIONS
Examples from Martin Renner, Aug 22 2017
STATUS
approved