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!)
A229233 O.g.f.: Sum_{n>=0} x^n / Product_{k=1..n} (1 - n*k*x). 11

%I #17 Jan 30 2022 11:39:24

%S 1,1,2,8,48,387,4043,52425,819346,15133184,324769270,7986143453,

%T 222514878501,6958782341565,242274294115558,9324382604206368,

%U 394282071192289024,18218582054356563951,915480348188869318723,49812603754178905560085,2923492374797360684715882

%N O.g.f.: Sum_{n>=0} x^n / Product_{k=1..n} (1 - n*k*x).

%C Compare to an o.g.f. of Bell numbers (A000110): Sum_{n>=0} x^n/Product_{k=1..n} (1-k*x).

%H Seiichi Manyama, <a href="/A229233/b229233.txt">Table of n, a(n) for n = 0..332</a>

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

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

%e O.g.f.: A(x) = 1 + x + 2*x^2 + 8*x^3 + 48*x^4 + 387*x^5 + 4043*x^6 +...

%e where

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

%e Exponential Generating Function.

%e E.g.f.: E(x) = 1 + x + 2*x^2/2! + 8*x^3/3! + 48*x^4/4! + 387*x^5/5! +...

%e where

%e E(x) = 1 + (exp(x)-1) + (exp(2*x)-1)^2/(2!*2^2) + (exp(3*x)-1)^3/(3!*3^3) + (exp(4*x)-1)^4/(4!*4^4) + (exp(5*x)-1)^5/(5!*5^5) +...

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

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

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

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

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

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

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

%Y Cf. A229234, A220181, A108459, A122399.

%Y Cf. A229258, A229259, A229260, A229261.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Sep 17 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 August 14 16:54 EDT 2024. Contains 375166 sequences. (Running on oeis4.)