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!)
A295104 a(n) = (1/n) times the n-th derivative of the fourth tetration of x (power tower of order 4) x^^4 at x=1. 3

%I #9 May 31 2018 03:08:32

%S 1,1,3,14,72,489,3722,33641,334520,3761688,45898272,615641806,

%T 8863726704,137786878644,2279658872696,40229212948404,750433323448128,

%U 14801457167223872,306869893647304896,6683254543551623904,152281219079726183040,3626445842114839589952

%N a(n) = (1/n) times the n-th derivative of the fourth tetration of x (power tower of order 4) x^^4 at x=1.

%C First term < 0: a(329).

%H Alois P. Heinz, <a href="/A295104/b295104.txt">Table of n, a(n) for n = 1..452</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/PowerTower.html">Power Tower</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Knuth%27s_up-arrow_notation">Knuth's up-arrow notation</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Tetration">Tetration</a>

%F a(n) = 1/n * [(d/dx)^n x^^4]_{x=1}.

%F a(n) = (n-1)! * [x^n] (x+1)^^4.

%F a(n) = 1/n * A179405(n).

%p f:= proc(n) f(n):= `if`(n=0, 1, (x+1)^f(n-1)) end:

%p a:= n-> (n-1)!*coeff(series(f(4), x, n+1), x, n):

%p seq(a(n), n=1..23);

%t f[n_] := f[n] = If[n == 0, 1, (x + 1)^f[n - 1]];

%t a[n_] := (n - 1)!*SeriesCoefficient[f[4], {x, 0, n}];

%t Array[a, 23] (* _Jean-François Alcover_, May 31 2018, from Maple *)

%Y Column k=4 of A295028.

%Y Cf. A179405.

%K sign

%O 1,3

%A _Alois P. Heinz_, Nov 14 2017

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 April 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)