login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A336713
a(0) = 1 and a(n) = (1/n) * Sum_{k=1..n} (-1)^(n-k) * binomial(n,k) * binomial(n+(n-1)*k,k-1) for n > 0.
6
1, 1, 1, 6, 76, 1447, 37206, 1212194, 47975271, 2238595055, 120453255172, 7347494056729, 501273291296174, 37833413358907566, 3130557361463956074, 281854137496597897755, 27433898122963009937892, 2870816347095046227070383, 321430790732030793454519088
OFFSET
0,4
LINKS
MATHEMATICA
a[0] = 1; a[n_] := Sum[(-1)^(n - k) * Binomial[n, k] * Binomial[n + (n - 1)*k, k - 1], {k, 1, n}] / n; Array[a, 19, 0] (* Amiram Eldar, Aug 01 2020 *)
PROG
(PARI) {a(n) = if(n==0, 1, sum(k=1, n, (-1)^(n-k)*binomial(n, k)*binomial(n+(n-1)*k, k-1))/n)}
CROSSREFS
Main diagonal of A336708.
Sequence in context: A116874 A030044 A145165 * A218303 A132613 A009763
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 01 2020
STATUS
approved