login
A277541
n-th derivative of the tenth tetration of x (power tower of order 10) x^^10 at x=1.
3
1, 1, 2, 9, 56, 480, 5094, 65534, 984808, 16992144, 330667680, 7130797872, 168564160632, 4321664793264, 119356965323400, 3528831476247240, 111173720474673984, 3716755785886791168, 131414199676568655552, 4899052003032070987968, 192050612714621129114880
OFFSET
0,3
COMMENTS
Differs from A033917 first at n=11.
LINKS
Eric Weisstein's World of Mathematics, Power Tower
Wikipedia, Tetration
FORMULA
E.g.f.: (x+1)^^10.
MAPLE
f:= proc(n) f(n):= `if`(n=0, 1, (x+1)^f(n-1)) end:
a:= n-> n!*coeff(series(f(10), x, n+1), x, n):
seq(a(n), n=0..25);
MATHEMATICA
f[n_] := f[n] = If[n == 0, 1, (x + 1)^f[n - 1]];
a[n_] := n!*SeriesCoefficient[f[10], {x, 0, n}];
Table[a[n], {n, 0, 25}] (* Jean-François Alcover, May 30 2018, from Maple *)
CROSSREFS
Column k=10 of A277537.
Sequence in context: A277538 A277539 A277540 * A033917 A277482 A274393
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 19 2016
STATUS
approved