login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A378802
a(n) = n * binomial(4*n, n).
5
0, 4, 56, 660, 7280, 77520, 807576, 8288280, 84146400, 847289520, 8476605280, 84362730452, 836022413616, 8255176274800, 81266247493200, 797911337890800, 7816430993273280, 76417576884236016, 745777615780501920, 7266758081613043600, 70706322844243486400, 687103929058903836480
OFFSET
0,2
LINKS
Necdet Batir and Anthony Sofo, On some series involving reciprocals of binomial coefficients, Appl. Math. Comp., Vol. 220 (2013), pp. 331-338.
FORMULA
a(n) = n * A005810(n).
a(n) = A374522(n) + n.
a(n) == 0 (mod 4).
Sum_{n>=1} 1/a(n) = A225847.
Sum_{n>=1} (-1)^n/a(n) = A229703.
MATHEMATICA
a[n_] := n * Binomial[4*n, n]; Array[a, 25, 0]
PROG
(PARI) a(n) = n * binomial(4*n, n);
CROSSREFS
KEYWORD
nonn,easy,new
AUTHOR
Amiram Eldar, Dec 07 2024
STATUS
approved