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!)
A248471 E.g.f.: Sum_{n>=0} x^n * (3*exp(n*x) - 2)^n. 1
1, 1, 8, 87, 1836, 49515, 1888218, 89221755, 5280079752, 373918542867, 31364236227630, 3055178634627603, 341669063554284348, 43366411236710160651, 6190420280148645465330, 985839231828100191119595, 173934377807560257682643088, 33790653299040390831598566051, 7189209864606264796455405368022 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: Sum_{n>=0} (3*x)^n * exp(n^2*x) / (1 + 2*x*exp(n*x))^(n+1).
EXAMPLE
E.g.f.: A(x) = 1 + x + 8*x^2/2! + 87*x^3/3! + 1836*x^4/4! + 49515*x^5/5! +...
where the e.g.f. satisfies following series identity:
A(x) = 1 + x*(3*exp(x)-2) + x^2*(3*exp(2*x)-2)^2 + x^3*(3*exp(3*x)-2)^3 + x^4*(3*exp(4*x)-2)^4 + x^5*(3*exp(5*x)-2)^5 + x^6*(3*exp(6*x)-2)^6 +...
A(x) = 1/(1+2*x) + (3*x)*exp(x)/(1+2*x*exp(x))^2 + (3*x)^2*exp(4*x)/(1+2*x*exp(2*x))^3 + (3*x)^3*exp(9*x)/(1+2*x*exp(3*x))^4 + (3*x)^4*exp(16*x)/(1+2*x*exp(4*x))^5 + (3*x)^5*exp(25*x)/(1+2*x*exp(5*x))^6 + (3*x)^6*exp(36*x)/(1+2*x*exp(6*x))^7 +...
PROG
(PARI) {a(n)=local(A=1); A=sum(k=0, n, x^k * (3*exp(k*x +x*O(x^n)) - 2)^k); n!*polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
(PARI) {a(n)=local(A=1); A=sum(k=0, n, (3*x)^k * exp(k^2*x +x*O(x^n)) / (1 + 2*x*exp(k*x +x*O(x^n)))^(k+1) ); n!*polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A239753 A246512 A366233 * A284069 A292458 A292738
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 27 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 July 7 10:29 EDT 2024. Contains 374069 sequences. (Running on oeis4.)