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
1, 1, 127, 115027, 383578651, 3406562690251, 66363706916031547, 2491358400855491082427, 164269869314849711368915051, 17742882813152530090093631133451, 2973340319455184373850280909330520667, 740141055495168376026146815923984436993627 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
O.g.f.: Sum_{n>=0} n^(3*n) * n! * x^n / Product_{k=1..n} (1 + n^3*k*x).
a(n) = Sum_{k=0..n} (-1)^(n-k) * k^(3*n) * k! * Stirling2(n,k).
a(n) == 1 (mod 6) for n>=0.
a(n) ~ c * d^n * (n!)^4 / n^(3/2), where d = 19.56009813649729638637945621039407270230134093295681610091365833339628... and c = 0.068225708245494700607840778486121251627676796315... . - Vaclav Kotesovec, May 08 2014
EXAMPLE
O.g.f.: F(x) = 1 + x + 127*x^2 + 115027*x^3 + 383578651*x^4 +...
where
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.g.f.: A(x) = 1 + x + 127*x^2/2! + 115027*x^3/3! + 383578651*x^4/4! +...
where
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 +...
MATHEMATICA
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 *)
PROG
(PARI) {a(n)=n!*polcoeff(sum(k=0, n, (1-exp(-k^3*x+x*O(x^n)))^k), n)}
for(n=0, 20, print1(a(n), ", "))
(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)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n) = sum(k=0, n, (-1)^(n-k)*k^(3*n)*k!*stirling(n, k, 2))}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A175633 A175825 A217914 * A351134 A195218 A215692
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 09 2013
STATUS
approved

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 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)