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!)
A349470 a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(k*n,n). 4
1, 1, 5, 65, 1394, 40378, 1470972, 64575585, 3315911300, 194921240846, 12905391110105, 950172113032181, 77000666619646717, 6810514097879311450, 652810277600420281734, 67407087759052608218945, 7459157975936646185855880, 880616251774021869817185430 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (1/n!) * Sum_{j=0..n} (-1)^(n-j) * Product_{k=(j-1)*n+1..j*n} k.
a(n) ~ exp(n + 1/2) * n^(n - 1/2) / (sqrt(2*Pi) * (1 + exp(1))). - Vaclav Kotesovec, Nov 20 2021
EXAMPLE
a(1) = (1/1!) * (1) = 1.
a(2) = (1/2!) * (-1*2 + 3*4) = 5.
a(3) = (1/3!) * (1*2*3 - 4*5*6 + 7*8*9) = 65.
a(4) = (1/4!) * (-1*2*3*4 + 5*6*7*8 - 9*10*11*12 + 13*14*15*16) = 1394.
MATHEMATICA
a[n_] := Sum[(-1)^(n - k) * Binomial[k*n, n], {k, 0, n}]; Array[a, 20, 0] (* Amiram Eldar, Nov 19 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*binomial(k*n, n));
(PARI) a(n) = sum(j=0, n, (-1)^(n-j)*prod(k=(j-1)*n+1, j*n, k))/n!;
CROSSREFS
Sequence in context: A079482 A147625 A157097 * A234295 A370261 A251575
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 19 2021
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 September 4 16:34 EDT 2024. Contains 375685 sequences. (Running on oeis4.)