OFFSET
1,2
REFERENCES
J. Ginsburg, Iterated exponentials, Scripta Math., 11 (1945), 340-353.
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..400 (terms 1..100 from T. D. Noe)
P. J. Cameron, Sequences realized by oligomorphic permutation groups, J. Integ. Seqs. Vol. 3 (2000), #00.1.5.
Jekuthiel Ginsburg, Iterated exponentials, Scripta Math., 11 (1945), 340-353. [Annotated scanned copy]
INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 299
Kruchinin Vladimir Victorovich, Composition of ordinary generating functions, arXiv:1009.2565 [math.CO], 2010.
FORMULA
a(n) = sum((m-1)!*(-1)^(n+m)*sum(stirling1(n, k)*stirling1(k, m), k,m,n), m,1,n), n>0. - Vladimir Kruchinin, Sep 14 2010
MATHEMATICA
max = 20; CoefficientList[-Log[1 + Log[1 + Log[1 - x]]]/x + O[x]^max, x] * Range[max]! (* Jean-François Alcover, Feb 06 2016 *)
PROG
(PARI) a(n) = sum(m=1, n, (m-1)!*(-1)^(n+m)*sum(k=m, n, stirling(n, k, 1)*stirling(k, m, 1))); \\ Michel Marcus, Feb 06 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Revised description from Christian G. Bower, Aug 15 1998
STATUS
approved