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!)
A331795 a(n) = Sum_{k=0..n} (-n)^k * binomial(n+1,k) * binomial(n+1,k+1). 3
1, 0, -3, 40, -515, 7056, -102935, 1554288, -22775319, 265497760, 586651461, -230587852560, 13426823564869, -637734419560224, 28594259589697425, -1264238490602458784, 56015489395280490385, -2499557487903373341888, 112150411888789509887053 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = [x^n] 2/(1 + 2*(n-1)*x + ((n+1)*x)^2 + (1 + (n-1)*x) * sqrt(1 + 2*(n-1)*x + ((n+1)*x)^2)).
a(n) = (n+1) * 2F1(-1 - n, -n; 2; -n), where 2F1 is the hypergeometric function. - Vaclav Kotesovec, Jan 26 2020
MATHEMATICA
Flatten[{1, Table[Sum[(-1)^k * n^k * Binomial[n+1, k] * Binomial[n+1, k+1], {k, 0, n}], {n, 1, 20}]}] (* Vaclav Kotesovec, Jan 26 2020 *)
Table[(n+1) * Hypergeometric2F1[-1 - n, -n, 2, -n], {n, 0, 20}] (* Vaclav Kotesovec, Jan 26 2020 *)
PROG
(PARI) {a(n) = sum(k=0, n, (-n)^k*binomial(n+1, k)*binomial(n+1, k+1))}
(PARI) {a(n) = polcoef(2/(1+2*(n-1)*x+((n+1)*x)^2+(1+(n-1)*x)*sqrt(1+2*(n-1)*x+((n+1)*x)^2)), n)}
CROSSREFS
Sequence in context: A220639 A355373 A337692 * A005724 A215196 A093376
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jan 26 2020
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 March 29 09:44 EDT 2024. Contains 371268 sequences. (Running on oeis4.)