A156212 G.f.: A(x) = exp( Sum_{n>=1} 2^(n^2)*A000204(n)*x^n/n ), a power series in x with integer coefficients.
1, 2, 26, 732, 116390, 74067484, 206309321188, 2332635556428984, 108379291296448423558, 20417630652420537229303340, 15592143220454380480367922739340
Offset: 0
Keywords
Examples
G.f.: A(x) = 1 + 2*x + 26*x^2 + 732*x^3 + 116390*x^4 + 74067484*x^5 +... log(A(x)) = 2*x + 2^4*3*x^2/2 + 2^9*4*x^3/3 + 2^16*7*x^4/4 + 2^25*11*x^5/5 +...
Programs
-
PARI
{a(n)=polcoeff(exp(sum(m=1,n,2^(m^2)*(fibonacci(m+1)+fibonacci(m-1))*x^m/m)+x*O(x^n)),n)}
Comments