The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A208236 G.f.: Sum_{n>=0} x^n * Product_{k=1..n} (1 + n*k*x) / (1 + x + n*k*x^2). 3
1, 1, 1, 4, 10, 50, 208, 1290, 7456, 55982, 411796, 3650514, 32484460, 332970374, 3468625588, 40420787250, 481757564956, 6295577910182, 84407459209876, 1223095585594674, 18208380720893980, 289843786627539014, 4741844351895315028, 82269590167564595250 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Compare to the identity:
Sum_{n>=0} x^n * Product_{k=1..n} (1 + t*k*x) / (1 + x + t*k*x^2) = (1+x)/(1-t*x^2).
Compare to the g.f. of A187741:
Sum_{n>=0} x^n * (1 + n*x)^n / (1 + x + n*x^2)^n = 1/2 + (1+2*x)*Sum_{n>=0} (n+1)!*x^(2*n)/2.
Limit n->infinity (a(n)/n!)^(1/n) = 1/(2*log(2)). - Vaclav Kotesovec, Nov 03 2014
LINKS
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 4*x^3 + 10*x^4 + 50*x^5 + 208*x^6 + 1290*x^7 +...
where
A(x) = 1 + x*(1+x)/(1+x+x^2) + x^2*(1+2*1*x)*(1+2*2*x)/((1+x+2*1*x^2)*(1+x+2*2*x^2)) + x^3*(1+3*1*x)*(1+3*2*x)*(1+3*3*x)/((1+x+3*1*x^2)*(1+x+3*2*x^2)*(1+x+3*3*x^2)) + x^4*(1+4*1*x)*(1+4*2*x)*(1+4*3*x)*(1+4*4*x)/((1+x+4*1*x^2)*(1+x+4*2*x^2)*(1+x+4*3*x^2)*(1+x+4*4*x^2)) +...
PROG
(PARI) {a(n)=polcoeff( sum(m=0, n, x^m*prod(k=1, m, (1+m*k*x)/(1+x+m*k*x^2 +x*O(x^n))) ), n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A081565 A151611 A351046 * A032495 A109387 A362819
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 10 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 29 03:48 EDT 2024. Contains 372921 sequences. (Running on oeis4.)