A326273 E.g.f.: Sum_{n>=0} ((1+x)^n - 1)^n * 3^n / n!.
1, 3, 36, 837, 29592, 1439775, 90723564, 7109399241, 672900166584, 75245901590187, 9770338275393240, 1452674820992915817, 244491148094925021156, 46131995287645828742727, 9678693008639052537757380, 2241968557540165237891804185, 569848346606872473737714179056, 158069419606634839915503628956051, 47621655849844748263169576451111984, 15515379326590122849811694557147948473, 5445580659887211921286711773580373201820
Offset: 0
Keywords
Examples
E.g.f: A(x) = 1 + 3*x + 36*x^2/2! + 837*x^3/3! + 29592*x^4/4! + 1439775*x^5/5! + 90723564*x^6/6! + 7109399241*x^7/7! + 672900166584*x^8/8! + 75245901590187*x^9/9! + 9770338275393240*x^10/10! +... such that A(x) = 1 + 3*((1+x) - 1) + 3^2*((1+x)^2 - 1)^2/2! + 3^3*((1+x)^3 - 1)^3/3! + 3^4*((1+x)^4 - 1)^4/4! + 3^5*((1+x)^5 - 1)^5/5! + 3^6*((1+x)^6 - 1)^6/6! + 3^7*((1+x)^7 - 1)^7/7! + ... also A(x) = 1 + 3*(1+x)*exp(-3*(1+x)) + 3^2*(1+x)^4*exp(-3*(1+x)^2)/2! + 3^3*(1+x)^9*exp(-3*(1+x)^3)/3! + 3^4*(1+x)^16*exp(-3*(1+x)^4)/4! + 3^5*(1+x)^25*exp(-3*(1+x)^5)/5! + 3^6*(1+x)^36*exp(-3*(1+x)^6)/6! + 3^7*(1+x)^49*exp(-3*(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, 3^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 * 3^n / n!.
(2) Sum_{n>=0} (1+x)^(n^2) * exp(-3*(1+x)^n) * 3^n / n!.
Comments