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!)
A298700 a(n) = (n/2)*Sum_{k=1..n} C(n + k, n)*C(k, n - k)/k. 1
1, 6, 25, 120, 581, 2877, 14421, 72996, 372229, 1909336, 9840909, 50923041, 264391973, 1376654747, 7185811685, 37589283916, 197005160825, 1034244838815, 5437798710585, 28629290831670, 150913830095445, 796396974477495, 4206974157985845, 22243990866224505 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
a := n -> (n/2)*add(binomial(n + k, n)*binomial(k, n - k)/k, k=1..n):
seq(a(n), n=1..24);
# Alternatively:
a := n -> `if`(n mod 2=0, 1, n/2)*binomial(2*n - floor(n/2), ceil(n/2))*hypergeom(
[-floor(n/2), ceil(n/2), floor(3*(n+1)/2)], [n mod 2+1/2, ceil(n/2)+1], -1/4):
seq(simplify(a(n)), n=1..24);
MATHEMATICA
Table[n/2 Sum[Binomial[n+k, n] Binomial[k, n-k]/k, {k, n}], {n, 30}] (* Harvey P. Dale, Dec 29 2021 *)
PROG
(PARI) a(n) = (n/2)*sum(k=1, n, binomial(n+k, n)*binomial(k, n-k)/k); \\ Michel Marcus, Jan 27 2018
CROSSREFS
Sequence in context: A120758 A227914 A179603 * A215763 A153481 A099359
KEYWORD
nonn
AUTHOR
Peter Luschny, Jan 26 2018
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 20 11:10 EDT 2024. Contains 371838 sequences. (Running on oeis4.)