login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A326272
E.g.f.: Sum_{n>=0} ((1+x)^n - 1)^n * 2^n / n!.
4
1, 2, 16, 264, 6736, 240160, 11214144, 657138944, 46862522368, 3973718103552, 393443889049600, 44826129808396288, 5806491899779117056, 846541984240702889984, 137723354275132587802624, 24818755539270666795663360, 4922319631768240931906584576, 1068365636390386171090826297344, 252495346180630403940163162472448, 64688594470052384103192832427687936, 17893635413553390198442202310639616000
OFFSET
0,2
COMMENTS
More generally, the following sums are equal:
(1) Sum_{n>=0} (q^n + p)^n * r^n/n!,
(2) Sum_{n>=0} q^(n^2) * exp(p*q^n*r) * r^n/n!;
here, q = (1+x) and p = -1, r = 2.
In general, let F(x) be a formal power series in x such that F(0)=1, then
Sum_{n>=0} m^n * F(q^n*r)^p * log( F(q^n*r) )^n / n! =
Sum_{n>=0} r^n * [y^n] F(y)^(m*q^n + p);
here, F(x) = exp(x), q = 1+x, p = -1, r = 2, m = 1.
LINKS
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!.
EXAMPLE
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! + ...
PROG
(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), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 22 2019
STATUS
approved