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!)
A221214 O.g.f.: Sum_{n>=0} (3*n+1)^(3*n+1) * exp(-(3*n+1)^3*x) * x^n / n!. 5

%I #32 Nov 16 2017 02:55:57

%S 1,255,395388,1525953330,10977340509135,126827739333023274,

%T 2148335345336441463090,50163717301669569182864400,

%U 1544377393328765493716910877185,60615459491155396034172113103266025,2954227738557038665136475801709196246304

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

%H G. C. Greubel, <a href="/A221214/b221214.txt">Table of n, a(n) for n = 0..159</a>

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

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

%F a(n) ~ n^(2*n+1/2) * 3^(6*n+7/3) / (sqrt(2*Pi*(1-r)) * exp(2*n) * r^(n+1/3) * (3-r)^(2*n+1)), where r = -LambertW(-3*exp(-3)) = 0.1785606278779211... (see A226750 = -r) . - _Vaclav Kotesovec_, May 13 2014

%e O.g.f.: A(x) = 1 + 255*x + 395388*x^2 + 1525953330*x^3 + 10977340509135*x^4 +...

%e where A(x) = exp(-x) + 4^4*x*exp(-4^3*x) + 7^7*exp(-7^3*x)*x^2/2! + 10^10*exp(-10^3*x)*x^3/3! + 13^13*exp(-13^3*x)*x^4/4! + 16^16*exp(-16^3*x)*x^5/5! +... is a power series in x with integer coefficients.

%t Table[1/n!*Sum[(-1)^(n-k)*Binomial[n,k]*(3*k+1)^(3*n+1),{k,0,n}],{n,0,20}] (* _Vaclav Kotesovec_, May 13 2014 *)

%t Table[Sum[Binomial[3*n+1,n+k]*3^(n+k)*StirlingS2[n+k,n],{k,0,2*n+1}],{n,0,20}] (* _Vaclav Kotesovec_, May 13 2014 *)

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

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

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

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

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

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

%Y Cf. A220955, A213193, A217900, A007820, A242449.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Feb 27 2013

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 April 25 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)