login
A353343
Smallest k such that k-th derivative of f_n(x) at x=1 is nonpositive, where f_{-1}(x)=0 and f_n(x)=x^(f_{n-1}(x)).
0
0, 1, 2, 7, 33, 329
OFFSET
-1,3
COMMENTS
f_{-1}(x)=0,
f_0(x)=1,
f_1(x)=x,
f_n(x)=x^(x^(x^...)) is a power tower with n levels.
LINKS
Eric Weisstein's World of Mathematics, Power Tower.
MATHEMATICA
Table[Length[NestWhileList[Expand[D[#, x]] &, Nest[x^# &, 0, n + 1], (# /. x -> 1) > 0 &]] - 1, {n, -1, 3}]
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
STATUS
approved