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!)
A221370 O.g.f.: Sum_{n>=0} n! * x^n * Product_{k=1..n} (k + x) / (1 + k^2*x + k*x^2). 4
1, 1, 4, 21, 183, 2362, 42449, 1012897, 30961412, 1179154241, 54727128731, 3040047461530, 199109235070645, 15182265283487213, 1333242114217704924, 133577535961042535669, 15144191953510005439455, 1928873660857769308675146, 274228718414760130917382185 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare to the identity:
Sum_{n>=0} n! * x^n * Product_{k=1..n} (1 + x) / (1 + k*x + k*x^2) = 1/(1-x-x^2).
LINKS
FORMULA
O.g.f.: 1/(1-x*(1+x)/(1-1*2*x/(1-2*x*(2+x)/(1-2*3*x/(1-3*x*(3+x)/(1-3*4*x/(1-4*x*(4+x)/(1-4*5*x/(1-5*x*(5+x)/(1-5*6*x/(1+...))))))))))) (continued fraction).
a(n) ~ 2^(2*n+5) * n^(2*n+5/2) / (exp(2*n) * Pi^(2*n+3/2)). - Vaclav Kotesovec, Nov 02 2014
EXAMPLE
O.g.f.: A(x) = 1 + x + 4*x^2 + 21*x^3 + 183*x^4 + 2362*x^5 + 42449*x^6 + ...
where
A(x) = 1 + x*(1+x)/(1+x+x^2) + 2!*x^2*(1+x)*(2+x)/((1+x+x^2)*(1+4*x+2*x^2)) + 3!*x^3*(1+x)*(2+x)*(3+x)/((1+x+x^2)*(1+4*x+2*x^2)*(1+9*x+3*x^2)) + 4!*x^4*(1+x)*(2+x)*(3+x)*(4+x)/((1+x+x^2)*(1+4*x+2*x^2)*(1+9*x+3*x^2)*(1+16*x+4*x^2)) + ...
MATHEMATICA
a[n_] := Coefficient[Sum[m!*x^m*Product[(k + x)/(1 + k^2*x + k*x^2), {k, 1, m}], {m, 0, n}] + O[x]^(n + 1), x, n]; Table[a[n], {n, 0, 18}] (* Robert P. P. McKone, Sep 15 2023 *)
PROG
(PARI) {a(n)=polcoeff( sum(m=0, n, m!*x^m*prod(k=1, m, (k+x)/(1+k^2*x+k*x^2 +x*O(x^n))) ), n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A230682 A231220 A231434 * A224500 A158108 A158258
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 13 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 August 11 01:05 EDT 2024. Contains 375059 sequences. (Running on oeis4.)