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!)
A336714 a(0) = 1 and a(n) = (1/n) * Sum_{k=1..n} (-2)^(n-k) * binomial(n,k) * binomial(n+(n-1)*k,k-1) for n > 0. 6
1, 1, 0, 2, 36, 766, 20910, 707472, 28740656, 1367040950, 74645106114, 4606416653654, 317237242964840, 24130334401571972, 2009783477119978508, 181958565624827141256, 17796032244661580019904, 1870078875109869688744870, 210155525478346375059816234, 25151873422906866362758095642 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
MATHEMATICA
a[0] = 1; a[n_] := Sum[(-2)^(n - k) * Binomial[n, k] * Binomial[n + (n - 1)*k, k - 1], {k, 1, n}] / n; Array[a, 20, 0] (* Amiram Eldar, Aug 01 2020 *)
PROG
(PARI) {a(n) = if(n==0, 1, sum(k=1, n, (-2)^(n-k)*binomial(n, k)*binomial(n+(n-1)*k, k-1))/n)}
CROSSREFS
Main diagonal of A336709.
Sequence in context: A262973 A207832 A112036 * A093530 A001626 A166473
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 01 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 April 24 11:39 EDT 2024. Contains 371936 sequences. (Running on oeis4.)