The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A336537 a(n) = Sum_{k=0..n} binomial(n,k) * binomial(n^2+k+1,n)/(n^2+k+1). 5
1, 2, 10, 134, 3298, 122762, 6208970, 399606286, 31331798914, 2902190030354, 310441644900682, 37685712807847062, 5120833751373831138, 770270980249401539482, 127088854993223378639498, 22824507222500649365932062, 4432992797251355031727570434, 925899965014326913556521154594 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (1/n) * Sum_{k=1..n} 2^k * binomial(n,k) * binomial(n^2,k-1) for n > 0.
a(n) = (1/(n^2+1)) * Sum_{k=0..n} binomial(n^2+1,k) * binomial((n+1)*n-k,n-k).
a(n) ~ 2^(n - 1/2) * exp(n) * n^(n - 5/2) / sqrt(Pi). - Vaclav Kotesovec, Jul 31 2021
MATHEMATICA
a[0] = 1; a[n_] := Sum[2^k * Binomial[n, k] * Binomial[n^2, k - 1], {k, 1, n}] / n; Array[a, 18, 0] (* Amiram Eldar, Jul 25 2020 *)
PROG
(PARI) {a(n) = sum(k=0, n, binomial(n, k) * binomial(n^2+k+1, n)/(n^2+k+1))}
(PARI) {a(n) = if(n==0, 1, sum(k=1, n, 2^k*binomial(n, k) * binomial(n^2, k-1)/n))}
(PARI) {a(n) = sum(k=0, n, binomial(n^2+1, k)*binomial((n+1)*n-k, n-k))/(n^2+1)}
CROSSREFS
Main diagonal of A336534.
Sequence in context: A254431 A011838 A355463 * A118183 A134051 A075199
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 25 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 June 4 11:04 EDT 2024. Contains 373096 sequences. (Running on oeis4.)