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

%I #8 Nov 21 2017 19:44:44

%S 1,1,524287,34314651811530,50369882873307917364901,

%T 740095864368253016271188139587625,

%U 67872880319721869662486234870635119906757244,28468832412072117193931250482560479429446507352468258480,43812568949824405485262661429905291482204531455805230631187460302069

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

%C Generally, for p>=2 is StirlingS2(p*n,n) asymptotic to n^((p-1)*n) * p^(p*n) / (sqrt(2*Pi*(1-c)*n) * exp((p-1)*n) * (p-c)^((p-1)*n) * c^n), where c = -LambertW(-p*exp(-p)). - _Vaclav Kotesovec_, May 11 2014

%H G. C. Greubel, <a href="/A222530/b222530.txt">Table of n, a(n) for n = 0..60</a>

%F a(n) = Stirling2(10*n, n).

%F a(n) = [x^(10*n)] (10*n)! * (exp(x) - 1)^n / n!.

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

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

%F a(n) ~ n^(9*n) * 10^(10*n) / (sqrt(2*Pi*(1-c)*n) * exp(9*n) * (10-c)^(9*n) * c^n), where c = -LambertW(-10*exp(-10)). - _Vaclav Kotesovec_, May 11 2014

%e O.g.f.: A(x) = 1 + x + 524287*x^2 + 34314651811530*x^3 + 50369882873307917364901*x^4 +...+ Stirling2(10*n, n)*x^n +...

%e where

%e A(x) = 1 + 1^10*x*exp(-1^10*x) + 2^20*exp(-2^10*x)*x^2/2! + 3^30*exp(-3^10*x)*x^3/3! + 4^40*exp(-4^10*x)*x^4/4! + 5^50*exp(-5^10*x)*x^5/5! +...

%e is a power series in x with integer coefficients.

%t Table[StirlingS2[10*n, n],{n,0,20}] (* _Vaclav Kotesovec_, May 11 2014 *)

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

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

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

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

%o {a(n) = Stirling2(10*n, n)}

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

%Y Cf. A007820, A217913, A217914, A217915, A222526, A222527, A222528, A222529, A217900.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Feb 23 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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)