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!)
A203798 E.g.f.: Sum_{n>=0} (1 - exp(-n^3*x))^n. 6

%I #17 Jan 31 2022 11:04:27

%S 1,1,127,115027,383578651,3406562690251,66363706916031547,

%T 2491358400855491082427,164269869314849711368915051,

%U 17742882813152530090093631133451,2973340319455184373850280909330520667,740141055495168376026146815923984436993627

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

%H Seiichi Manyama, <a href="/A203798/b203798.txt">Table of n, a(n) for n = 0..125</a>

%F O.g.f.: Sum_{n>=0} n^(3*n) * n! * x^n / Product_{k=1..n} (1 + n^3*k*x).

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

%F a(n) == 1 (mod 6) for n>=0.

%F a(n) ~ c * d^n * (n!)^4 / n^(3/2), where d = 19.56009813649729638637945621039407270230134093295681610091365833339628... and c = 0.068225708245494700607840778486121251627676796315... . - _Vaclav Kotesovec_, May 08 2014

%e O.g.f.: F(x) = 1 + x + 127*x^2 + 115027*x^3 + 383578651*x^4 +...

%e where

%e F(x) = 1 + x/(1+x) + 2^6*2!*x^2/((1+2^3*1*x)*(1+2^3*2*x)) + 3^9*3!*x^3/((1+3^3*1*x)*(1+3^3*2*x)*(1+3^3*3*x)) + 4^12*4!*x^4/((1+4^3*1*x)*(1+4^3*2*x)*(1+4^3*3*x)*(1+4^3*4*x)) +...

%e ...

%e E.g.f.: A(x) = 1 + x + 127*x^2/2! + 115027*x^3/3! + 383578651*x^4/4! +...

%e where

%e A(x) = 1 + (1-exp(-x)) + (1-exp(-2^3*x))^2 + (1-exp(-3^3*x))^3 + (1-exp(-4^3*x))^4 + (1-exp(-5^3*x))^5 + (1-exp(-6^3*x))^6 +...

%t Flatten[{1,Table[Sum[(-1)^(n-k) * k^(3*n) * k! * StirlingS2[n,k], {k,0,n}], {n,1,20}]}] (* _Vaclav Kotesovec_, May 08 2014 *)

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

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

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

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

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

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

%Y Cf. A220181, A187755, A242229.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Jan 09 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 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)