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!)
A229234 O.g.f.: Sum_{n>=0} n! * x^n / Product_{k=1..n} (1 - n*k*x). 13
1, 1, 3, 19, 189, 2671, 50253, 1203679, 35548509, 1263153631, 52973381853, 2581493517439, 144317666200029, 9156299509121311, 653254398215833053, 51995430120141924799, 4585316010326597014749, 445304380297565009962591, 47368550666889620425580253, 5492643630110295899167573759 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} k^(n-k) * k! * Stirling2(n, k).
E.g.f.: Sum_{n>=0} (exp(n*x) - 1)^n / n^n.
EXAMPLE
O.g.f.: A(x) = 1 + x + 3*x^2 + 19*x^3 + 189*x^4 + 2671*x^5 + 50253*x^6 +...
where
A(x) = 1 + x/(1-x) + 2!*x^2/((1-2*1*x)*(1-2*2*x)) + 3!*x^3/((1-3*1*x)*(1-3*2*x)*(1-3*3*x)) + 4!*x^4/((1-4*1*x)*(1-4*2*x)*(1-4*3*x)*(1-4*4*x)) +...
Exponential Generating Function.
E.g.f.: E(x) = 1 + x + 3*x^2/2! + 19*x^3/3! + 189*x^4/4! + 2671*x^5/5! +...
where
E(x) = 1 + (exp(x)-1) + (exp(2*x)-1)^2/2^2 + (exp(3*x)-1)^3/3^3 + (exp(4*x)-1)^4/4^4 + (exp(5*x)-1)^5/5^5 +...
MATHEMATICA
Flatten[{1, Table[Sum[k^(n-k) * k! * StirlingS2[n, k], {k, 0, n}], {n, 1, 20}]}] (* Vaclav Kotesovec, May 08 2014 *)
PROG
(PARI) {a(n)=polcoeff(sum(m=0, n, m!*x^m/prod(k=1, m, 1-m*k*x +x*O(x^n))), n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=n!*polcoeff(sum(m=0, n, (exp(m*x+x*O(x^n))-1)^m/m^m), n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=sum(k=0, n, k^(n-k) * k! * stirling(n, k, 2))}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A326553 A052888 A141623 * A090354 A119394 A101481
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 17 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 May 12 08:55 EDT 2024. Contains 372432 sequences. (Running on oeis4.)