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!)
A359842 a(n) = Sum_{k=0..n} binomial(n*k,n+k). 2
1, 0, 1, 90, 13690, 3443275, 1308315371, 701623884514, 505274768721332, 470638793249281593, 550707386335951810915, 790898932162231992184327, 1367864138835420575101044139, 2804370191530797723173615407860, 6725366044028696102055907486691290 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) ~ binomial(n^2,2*n).
a(n) ~ exp(2*n-2) * n^(2*n - 1/2) / (sqrt(Pi) * 2^(2*n+1)).
From Peter Bala, Jan 19 2023: (Start)
Conjectures: a(2^k) == 0 (mod 2^(k-1)) and a(3^k) == 0 (mod 3^(k+2)) for k >= 2; a(p^k) == 0 (mod p^(k+1)) for all primes p >= 5.
Let m be a positive integer. Similar recurrences may hold for the sequence whose n-th term is given by Sum_{k = 0..n} binomial(m*n*k, n+k). Cf. A099237. (End)
MAPLE
a := proc (n) option remember; add(binomial(n*k, n+k), k = 0..n) end:
seq(a(n), n = 0..20); # Peter Bala, Jan 16 2023
MATHEMATICA
Table[Sum[Binomial[n*k, n+k], {k, 0, n}], {n, 0, 20}]
CROSSREFS
Sequence in context: A036257 A276352 A203779 * A295594 A200503 A199229
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Jan 15 2023
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)