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!)
A307885 Coefficient of x^n in (1 - (n-1)*x - n*x^2)^n. 7
1, 0, -3, 28, -255, 2376, -20195, 71688, 3834369, -187855280, 6676401501, -220595216280, 7180102389889, -234023553073296, 7631745228481725, -245429882267144624, 7501602903392006145, -196609711096827812448, 2542435002501531333949 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Also coefficient of x^n in the expansion of 1/sqrt(1 + 2*(n-1)*x + ((n+1)*x)^2).
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-n)^k * binomial(n,k)^2.
a(n) = Sum_{k=0..n} (-n-1)^(n-k) * binomial(n,k) * binomial(n+k,k).
a(n) = Hypergeometric2F1(-n, -n, 1, -n). - Vaclav Kotesovec, May 07 2019
a(n) = n! * [x^n] exp((1 - n)*x) * BesselI(0,2*sqrt(-n)*x). - Ilya Gutkovskiy, May 31 2020
MAPLE
A307885:= n -> simplify(hypergeom([-n, -n], [1], -n));
seq(A307885(n), n = 0..30); # G. C. Greubel, May 31 2020
MATHEMATICA
Table[Hypergeometric2F1[-n, -n, 1, -n], {n, 0, 20}] (* Vaclav Kotesovec, May 07 2019 *)
PROG
(PARI) {a(n) = polcoef((1-(n-1)*x-n*x^2)^n, n)}
(PARI) {a(n) = sum(k=0, n, (-n)^k*binomial(n, k)^2)}
(PARI) {a(n) = sum(k=0, n, (-n-1)^(n-k)*binomial(n, k)*binomial(n+k, k))}
(Sage) [ hypergeometric([-n, -n], [1], -n).simplify_hypergeometric() for n in (0..30)] # G. C. Greubel, May 31 2020
CROSSREFS
Main diagonal of A307884.
Cf. A187021.
Sequence in context: A037665 A037784 A037588 * A076723 A198887 A026114
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 02 2019
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 April 24 11:14 EDT 2024. Contains 371936 sequences. (Running on oeis4.)