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!)
A295109 a(n) = (1/n) times the n-th derivative of the ninth tetration of x (power tower of order 9) x^^9 at x=1. 3
1, 1, 3, 14, 96, 849, 9362, 123101, 1888016, 32703888, 631924752, 13408344586, 310042428528, 7748365327260, 208162961545016, 5980417481391924, 182983003358805504, 5940081852766157024, 203920022890052114112, 7381110402800795329344, 280947854368982073172224 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
Eric Weisstein's World of Mathematics, Power Tower
Wikipedia, Tetration
FORMULA
a(n) = 1/n * [(d/dx)^n x^^9]_{x=1}.
a(n) = (n-1)! * [x^n] (x+1)^^9.
a(n) = 1/n * A277540(n).
MAPLE
f:= proc(n) f(n):= `if`(n=0, 1, (x+1)^f(n-1)) end:
a:= n-> (n-1)!*coeff(series(f(9), x, n+1), x, n):
seq(a(n), n=1..23);
MATHEMATICA
f[n_] := f[n] = If[n == 0, 1, (x + 1)^f[n - 1]];
a[n_] := (n - 1)!*SeriesCoefficient[f[9], {x, 0, n}];
Array[a, 23] (* Jean-François Alcover, May 31 2018, from Maple *)
CROSSREFS
Column k=9 of A295028.
Cf. A277540.
Sequence in context: A295106 A295107 A295108 * A295110 A136461 A336525
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Nov 14 2017
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 May 6 17:14 EDT 2024. Contains 372297 sequences. (Running on oeis4.)