A378804 a(n) = n * 2^n * binomial(4*n, n).
0, 8, 224, 5280, 116480, 2480640, 51684864, 1060899840, 21541478400, 433812234240, 8680043806720, 172774871965696, 3424347806171136, 67626404043161600, 1331466198928588800, 26145958720005734400, 512257621575157678080, 10016204637370583089152, 195501127311163895316480
Offset: 0
Links
- Amiram Eldar, Table of n, a(n) for n = 0..500
- Jonathan M. Borwein and Roland Girgensohn, Evaluations of binomial series, aequationes mathematicae, Vol. 70, No. 1 (2005), pp. 25-36.
Programs
-
Mathematica
a[n_] := n * 2^n * Binomial[4*n, n]; Array[a, 20, 0]
-
PARI
a(n) = n * 2^n * binomial(4*n, n);