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!)
A245375 G.f.: Sum_{n>=0} x^n / ( (1+x)^(n+1) * (1 - 4*(n+1)*x) ). 4
1, 4, 20, 112, 736, 5632, 49024, 474112, 5017600, 57597952, 712597504, 9446981632, 133474877440, 2000265674752, 31666683510784, 527786775150592, 9233419259084800, 169106747636580352, 3234542505882025984, 64473076850860490752, 1336621867385969704960, 28769619371258703511552 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: Sum_{n>=0} n! * (4*x)^n * (1+x)^n / Product_{k=1..n} (1 + 4*k*x).
a(n) = Sum_{k=0..floor(n/2)} Sum_{i=0..k} (-1)^i * binomial(k,i) * 4^(n-k) * (k-i+1)^(n-k).
EXAMPLE
G.f.: A(x) = 1 + 4*x + 20*x^2 + 112*x^3 + 736*x^4 + 5632*x^5 + 49024*x^6 +...
where we have the following series identity:
A(x) = 1/((1+x)*(1-4*x)) + x/((1+x)^2*(1-8*x)) + x^2/((1+x)^3*(1-12*x))+ x^3/((1+x)^4*(1-16*x))+ x^4/((1+x)^5*(1-20*x)) + x^5/((1+x)^6*(1-24*x)) +...
is equal to
A(x) = 1 + 4*x*(1+x)/(1+4*x) + 2!*(4*x)^2*(1+x)^2/((1+4*x)*(1+8*x)) + 3!*(4*x)^3*(1+x)^3/((1+4*x)*(1+8*x)*(1+12*x)) + 4!*(4*x)^4*(1+x)^4/((1+4*x)*(1+8*x)*(1+12*x)*(1+16*x)) + 5!*(4*x)^5*(1+x)^5/((1+4*x)*(1+8*x)*(1+12*x)*(1+16*x)*(1+20*x)) +...
PROG
(PARI) {a(n)=polcoeff( sum(m=0, n, x^m/((1+x)^(m+1)*(1 - 4*(m+1)*x) +x*O(x^n))), n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=polcoeff( sum(m=0, n, 4^m*m!*x^m*(1+x)^m/prod(k=1, m, 1+4*k*x +x*O(x^n))), n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=sum(k=0, floor(n/2), sum(i=0, k, (-1)^i*binomial(k, i)*(k-i+1)^(n-k)*4^(n-k)))}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A192624 A209200 A294119 * A362223 A108447 A287512
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 19 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 June 4 22:04 EDT 2024. Contains 373102 sequences. (Running on oeis4.)