A326272 E.g.f.: Sum_{n>=0} ((1+x)^n - 1)^n * 2^n / n!.
1, 2, 16, 264, 6736, 240160, 11214144, 657138944, 46862522368, 3973718103552, 393443889049600, 44826129808396288, 5806491899779117056, 846541984240702889984, 137723354275132587802624, 24818755539270666795663360, 4922319631768240931906584576, 1068365636390386171090826297344, 252495346180630403940163162472448, 64688594470052384103192832427687936, 17893635413553390198442202310639616000
Offset: 0
Keywords
Examples
E.g.f: A(x) = 1 + 2*x + 16*x^2/2! + 264*x^3/3! + 6736*x^4/4! + 240160*x^5/5! + 11214144*x^6/6! + 657138944*x^7/7! + 46862522368*x^8/8! + 3973718103552*x^9/9! + 393443889049600*x^10/10! +... such that A(x) = 1 + 2*((1+x) - 1) + 2^2*((1+x)^2 - 1)^2/2! + 2^3*((1+x)^3 - 1)^3/3! + 2^4*((1+x)^4 - 1)^4/4! + 2^5*((1+x)^5 - 1)^5/5! + 2^6*((1+x)^6 - 1)^6/6! + 2^7*((1+x)^7 - 1)^7/7! + ... also A(x) = 1 + 2*(1+x)*exp(-2*(1+x)) + 2^2*(1+x)^4*exp(-2*(1+x)^2)/2! + 2^3*(1+x)^9*exp(-2*(1+x)^3)/3! + 2^4*(1+x)^16*exp(-2*(1+x)^4)/4! + 2^5*(1+x)^25*exp(-2*(1+x)^5)/5! + 2^6*(1+x)^36*exp(-2*(1+x)^6)/6! + 2^7*(1+x)^49*exp(-2*(1+x)^7)/7! + ...
Links
- Paul D. Hanna, Table of n, a(n) for n = 0..300
Programs
-
PARI
{a(n)=n!*polcoeff(sum(m=0, n, 2^m*((1+x+x*O(x^n))^m-1)^m/m!), n)} for(n=0, 30, print1(a(n), ", "))
Formula
E.g.f. may be expressed by the following sums.
(1) Sum_{n>=0} ((1+x)^n - 1)^n * 2^n / n!.
(2) Sum_{n>=0} (1+x)^(n^2) * exp(-2*(1+x)^n) * 2^n / n!.
Comments