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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 1, 13, 127, 21079, 5748277, 12575820727, 76137769800001, 2378969789430032869, 263966921383940194614823, 128008718415112846211347561597, 240383035701447602719960666753525867, 1863847508172945183054545696402414919578641
Offset: 0

Views

Author

Paul D. Hanna, Apr 25 2012

Keywords

Examples

			G.f.: A(x) = 1 + x + 13*x^2 + 127*x^3 + 21079*x^4 + 5748277*x^5 +...
such that
log(A(x)) = x + 5^2*x^2 + 7^3*x^3 + 17^4*x^4 + 31^5*x^5 + 65^6*x^6 + 127^7*x^7 +...+ (2^n + (-1)^n)^n*x^n/n +...
		

Crossrefs

Programs

  • PARI
    {a(n)=polcoeff(exp(sum(k=1, n, (2^k+(-1)^k)^k*x^k/k)+x*O(x^n)), n)}
    for(n=0, 20, print1(a(n), ", "))

Formula

a(n) == 1 (mod 6).
Showing 1-1 of 1 results.