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.

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

Original entry on oeis.org

1, 1, 4, 18, 100, 650, 4908, 41090, 382520, 3863808, 42409440, 497972112, 6259762320, 83343114504, 1175904241848, 17442325040520, 272149555445760, 4438451554802880, 75714874759039104, 1343817666163911168, 24837691533530152320, 475811860099666527360
Offset: 0

Views

Author

Alois P. Heinz, Aug 14 2012

Keywords

Comments

Also n-th derivative of (x^(x^x))^x = x^(x^x*x) at x=1.
First term < 0: a(65).

Crossrefs

Column k=6 of A215703.

Programs

  • Maple
    a:= n-> n!*coeff(series(subs(x=x+1, (x^x)^(x^x) ), x, n+1), x, n):
    seq(a(n), n=0..30);
  • Mathematica
    m = 21; CoefficientList[(x+1)^((x+1)^(x+2)) + O[x]^(m+1), x]*Range[0, m]! (* Jean-François Alcover, Feb 07 2021 *)

Formula

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