login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A217902 O.g.f.: Sum_{n>=0} 3*n^n*(n+3)^(n-1) * exp(-n*(n+3)*x) * x^n / n!. 9

%I #23 Jan 24 2017 14:33:12

%S 1,3,18,210,3696,86436,2521800,88274640,3608360064,168822613872,

%T 8901871248480,522534101560224,33804242536287744,2390169742849449216,

%U 183412961210465667072,15183107016739655860224,1348837954231568133427200,128012762381954718934183680

%N O.g.f.: Sum_{n>=0} 3*n^n*(n+3)^(n-1) * exp(-n*(n+3)*x) * x^n / n!.

%C Compare the g.f. to the LambertW identity:

%C 1 = Sum_{n>=0} 3*(n+3)^(n-1) * exp(-(n+3)*x) * x^n/n!.

%H G. C. Greubel, <a href="/A217902/b217902.txt">Table of n, a(n) for n = 0..250</a>

%F a(n) = 1/n! * Sum_{k=0..n} 3*(-1)^(n-k)*binomial(n,k) * k^n * (k+3)^(n-1).

%F a(n) = 1/n! * [x^n] Sum_{k>=0} 3*k^k*(k+3)^(k-1)*x^k / (1 + k*(k+3)*x)^(k+1).

%F a(n) = [x^n] 1 + 3*x*(1+3*x)^(n-1) / Product_{k=1..n} (1-k*x).

%F a(n) = [x^n] 1 + 3*x*(1-3*x)^(n-1) / Product_{k=1..n} (1-(k+3)*x).

%F a(n) ~ 3 * 2^(2*n) * n^(n-3/2) / (sqrt(Pi*(1-c)) * exp(n) * (2-c)^(n-1) * c^(n+3/2)), where c = -LambertW(-2*exp(-2)) = 0.4063757399599599... . - _Vaclav Kotesovec_, May 22 2014

%e O.g.f.: A(x) = 1 + 3*x + 18*x^2 + 210*x^3 + 3696*x^4 + 86436*x^5 + 2521800*x^6 +...

%e where

%e A(x) = 1 + 3*1^1*4^0*x*exp(-1*4*x) + 3*2^2*5^1*exp(-2*5*x)*x^2/2! + 3*3^3*6^2*exp(-3*6*x)*x^3/3! + 3*4^4*7^3*exp(-4*7*x)*x^4/4! + 3*5^5*8^4*exp(-5*8*x)*x^5/5! +...

%e simplifies to a power series in x with integer coefficients.

%t Flatten[{1,Table[Sum[Binomial[n-1,j]*3^(n-j)*StirlingS2[n+j,n],{j,0,n-1}],{n,1,20}]}] (* _Vaclav Kotesovec_, May 22 2014 *)

%o (PARI) {a(n)=polcoeff(sum(m=0,n,3*m^m*(m+3)^(m-1)*x^m*exp(-m*(m+3)*x+x*O(x^n))/m!),n)}

%o (PARI) {a(n)=(1/n!)*polcoeff(sum(k=0, n, 3*k^k*(k+3)^(k-1)*x^k/(1+k*(k+3)*x +x*O(x^n))^(k+1)), n)}

%o (PARI) {a(n)=1/n!*sum(k=0,n, 3*(-1)^(n-k)*binomial(n,k)*k^n*(k+3)^(n-1))}

%o (PARI) {a(n)=polcoeff(1+3*x*(1+3*x)^(n-1)/prod(k=0, n, 1-k*x +x*O(x^n)), n)}

%o (PARI) {a(n)=polcoeff(1+3*x*(1-3*x)^n/prod(k=0, n, 1-(k+3)*x +x*O(x^n)), n)}

%o for(n=0,30,print1(a(n),", "))

%Y Cf. A217899, A217900, A217901, A217903, A217904, A217905, A217910.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Oct 14 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 16 07:48 EDT 2024. Contains 375959 sequences. (Running on oeis4.)