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!)
A262394 a(n) = (1/n)*Sum_{k=1..n} k*binomial(n,k-1)*binomial(2*n,n-k). 4
1, 4, 20, 110, 637, 3808, 23256, 144210, 904475, 5722860, 36463440, 233646504, 1504152860, 9721421440, 63040282096, 409972529754, 2672860120455, 17464206951100, 114330456032100, 749760805916430 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: x*B'(x) + B(x) - B'(x)/B(x) - 1, where B(x) is g.f. of A001764.
a(n) = (n+2) * binomial(3*n, n-1) / (3*n). - Vaclav Kotesovec, Sep 21 2015
MATHEMATICA
Table[Sum[k Binomial[n, k-1] Binomial[2n, n-k], {k, n}]/n, {n, 30}] (* Michael De Vlieger, Sep 21 2015 *)
PROG
(Maxima)
a(n):=sum(k*binomial(n, k-1)*binomial(2*n, n-k), k, 1, n)/n;
(PARI) a(n)=sum(k=1, n, (k*binomial(n, k-1)*binomial(2*n, n-k))/n) \\ Anders Hellström, Sep 21 2015
(Magma) [(n+2)*Binomial(3*n, n)/(3*(2*n+1)): n in [1..30]]; // G. C. Greubel, Nov 09 2022
(SageMath) [(n+2)*binomial(3*n, n)/(3*(2*n+1)) for n in range(1, 31)] # G. C. Greubel, Nov 09 2022
CROSSREFS
Cf. A001764.
Sequence in context: A325956 A026127 A222205 * A271932 A153295 A006770
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, Sep 21 2015
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 06:53 EDT 2024. Contains 371799 sequences. (Running on oeis4.)