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!)
A243809 G.f.: exp( Integral Sum_{n>=1} n!*n^n*x^(n-1) / Product_{k=1..n} (1+k*n*x) dx ). 1
1, 1, 4, 42, 909, 33969, 1948514, 158770640, 17419561466, 2474812055850, 441910422152592, 96867456432497772, 25572186966552515130, 8002470602289313981938, 2929213328377453597523820, 1239933908245021946285387592, 601020049737946926794959094457 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: exp( Sum_{n>=1} A220181(n)*x^n/n ) where Sum_{n>=1} A220181(n)*x^n/n! = Sum_{n>=1} (1 - exp(-n*x))^n.
EXAMPLE
G.f.: A(x) = 1 + x + 4*x^2 + 42*x^3 + 909*x^4 + 33969*x^5 + 1948514*x^6 +...
where the logarithmic derivative is given by the series:
A'(x)/A(x) = 1/(1+x) + 2!*2^2*x/((1+1*2*x)*(1+2*2*x)) + 3!*3^3*x^2/((1+1*3*x)*(1+2*3*x)*(1+3*3*x)) + 4!*4^4*x^3/((1+1*4*x)*(1+2*4*x)*(1+3*4*x)*(1+4*4*x)) + 5!*5^5*x^4/((1+1*5*x)*(1+2*5*x)*(1+3*5*x)*(1+4*5*x)*(1+5*5*x)) +...
Explicitly,
A'(x)/A(x) = 1 + 7*x + 115*x^2 + 3451*x^3 + 164731*x^4 + 11467387*x^5 +...+ A220181(n+1)*x^n +...
compare to:
G(x) = x + 7*x^2/2! + 115*x^3/3! + 3451*x^4/4! + 164731*x^5/5! + 11467387*x^6/6! +...+ A220181(n)*x^n/n! +...
where G(x) = (1-exp(-x)) + (1-exp(-2*x))^2 + (1-exp(-3*x))^3 + (1-exp(-4*x))^4 +...
PROG
(PARI) {a(n)=local(A=1+x); A=exp(intformal(sum(m=1, n+1, m^m*m!*x^(m-1)/prod(k=1, m, 1+m*k*x +x*O(x^n))))); polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) /* From g.f. exp( Sum_{n>=1} A220181(n)*x^n/n ): */
{A220181(n)=n!*polcoeff(sum(k=0, n, (1-exp(-k*x+x*O(x^n)))^k), n)}
{a(n)=polcoeff(exp(sum(m=1, n, A220181(m)*x^m/m) +x*O(x^n)), n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A143990 A352074 A267616 * A220180 A134356 A156479
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 11 2014
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 24 04:02 EDT 2024. Contains 371918 sequences. (Running on oeis4.)