This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A211205 #25 Nov 15 2017 09:49:06 %S A211205 1,1,2,9,56,480,5094,60494,823528,12365424,206078880,3745686912, %T A211205 74083090872,1579529362944,36165466533000,884104045301640, %U A211205 22992315801392064,633547543117707648,18439576158792912192,565162707747635408448,18194047307015185486080 %N A211205 n-th derivative of x^(x^(x^(x^(x^x)))) at x=1. %H A211205 Robert G. Wilson v and Alois P. Heinz, <a href="/A211205/b211205.txt">Table of n, a(n) for n = 0..400</a> %F A211205 E.g.f.: (x+1)^((x+1)^((x+1)^((x+1)^((x+1)^(x+1))))). %p A211205 a:= n-> n!*coeff(series(subs(x=x+1, x^(x^(x^(x^(x^x))))), x, n+1), x, n): %p A211205 seq(a(n), n=0..20); %t A211205 NestList[ Factor[ D[#1, x]] &, x^x^x^x^x^x, 9] /. (x -> 1) (* or quicker *) %t A211205 Range[0, 20]! CoefficientList[ Series[(1 + x)^(1 + x)^(1 + x)^(1 + x)^(1 + x)^(1 + x), {x, 0, 20}], x] %Y A211205 Cf. A005727, A008405, A176118, A179230, A179405, A179505, A215522, A215524, A215629, A215643, A215691, A215704, A215705, A215706, A215707, A215708, A215709, A215710, A215522, A295106. %Y A211205 Column k=37 of A215703. %Y A211205 Column k=6 of A277537. %K A211205 nonn %O A211205 0,3 %A A211205 _Alois P. Heinz_ and _Robert G. Wilson v_, Feb 04 2013