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.

A000268 E.g.f.: -log(1+log(1+log(1-x))).

Original entry on oeis.org

1, 3, 15, 105, 947, 10472, 137337, 2085605, 36017472, 697407850, 14969626900, 352877606716, 9064191508018, 252024567201300, 7542036496650006, 241721880399970938, 8261159383595659128, 299916384730043070880, 11526945327529620432872, 467583770376898192016104
Offset: 1

Views

Author

Keywords

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).

Crossrefs

a(n)=|A039815(n, 1)| (first column of triangle).

Programs

  • 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 *)
  • 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

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

Extensions

Revised description from Christian G. Bower, Aug 15 1998