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.

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

Original entry on oeis.org

1, 1, 3, 7, 25, 113, 741, 7181, 101139, 2089283, 61683087, 2600572391, 156100460443, 13231060891179, 1594932996895155, 270715422001769667, 65209448673400087945, 22130613779988110245993, 10631829612570393072035829, 7207580557759524950136903565, 6902254922678483464065364019049, 9340558535943272871301176019398265, 17831418294195720284498112713266643601
Offset: 0

Views

Author

Paul D. Hanna, Feb 04 2009

Keywords

Comments

Compare to g.f. exp( Sum_{m>=1} (1 + x)^m * x^m/m ) of the Fibonacci sequence.
Conjecture: a(n)^(1/n^2) tends to 2^(1/4). - Vaclav Kotesovec, Oct 17 2020

Examples

			G.f.: A(x) = 1 + x + 3*x^2 + 7*x^3 + 25*x^4 + 113*x^5 + 741*x^6 +...
log(A(x)) = (1 + 2*x)*x + (1 + 2^2*x)^2*x^2/2 + (1 + 2^3*x)^3*x^3/3 +...
log(A(x)) = x + 5*x^2/2 + 13*x^3/3 + 65*x^4/4 + 401*x^5/5 + 3521*x^6/6 +...
		

Crossrefs

Cf. A156101 (log), A155810.

Programs

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

Formula

G.f.: A(x) = exp(F(x)) where F(x) is the l.g.f. of A156101.