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.

A180606 G.f.: A(x) = exp( Sum_{n>=1} (2^n-1)^(n-1)*x^n/n ).

Original entry on oeis.org

1, 1, 2, 18, 862, 185582, 165592644, 599576207236, 8764375895813558, 516573425446007525398, 122710727732550268600238492, 117431929105754130321446873061820
Offset: 0

Views

Author

Paul D. Hanna, Sep 26 2010

Keywords

Examples

			G.f.: A(x) = 1 + x + 2*x^2 + 18*x^3 + 862*x^4 + 185582*x^5 +...
log(A(x)) = x + 3*x^2/2 + 7^2*x^3/3 + 15^3*x^4/4 + 31^4*x^5/5 +...
		

Crossrefs

Cf. A180602.

Programs

  • PARI
    {a(n)=polcoeff(exp(sum(m=1,n,(2^m-1)^(m-1)*x^m/m)+x*O(x^n)),n)}