cp's OEIS Frontend

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.

A211205 n-th derivative of x^(x^(x^(x^(x^x)))) at x=1.

Original entry on oeis.org

1, 1, 2, 9, 56, 480, 5094, 60494, 823528, 12365424, 206078880, 3745686912, 74083090872, 1579529362944, 36165466533000, 884104045301640, 22992315801392064, 633547543117707648, 18439576158792912192, 565162707747635408448, 18194047307015185486080
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Maple
    a:= n-> n!*coeff(series(subs(x=x+1, x^(x^(x^(x^(x^x))))), x, n+1), x, n):
    seq(a(n), n=0..20);
  • Mathematica
    NestList[ Factor[ D[#1, x]] &, x^x^x^x^x^x, 9] /. (x -> 1) (* or quicker *)
    Range[0, 20]! CoefficientList[ Series[(1 + x)^(1 + x)^(1 + x)^(1 + x)^(1 + x)^(1 + x), {x, 0, 20}], x]

Formula

E.g.f.: (x+1)^((x+1)^((x+1)^((x+1)^((x+1)^(x+1))))).