login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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