A257633 a(n) = binomial(4*n + 2,n).
1, 6, 45, 364, 3060, 26334, 230230, 2035800, 18156204, 163011640, 1471442973, 13340783196, 121399651100, 1108176102180, 10142940735900, 93052749919920, 855420636763836, 7877932561061640, 72667580816130436, 671262558647881200, 6208770443303347920
Offset: 0
Links
- Michael De Vlieger, Table of n, a(n) for n = 0..1025
- N. J. Wildberger and Dean Rubine, A Hyper-Catalan Series Solution to Polynomial Equations, and the Geode, Amer. Math. Monthly (2025). See section 12.
Programs
-
Maple
#A257633 seq(binomial(4*n + 2,n), n = 0..20);
-
Mathematica
Table[Binomial[4*n + 2, n], {n, 0, 120}] (* Michael De Vlieger, Apr 11 2025 *)
-
PARI
vector(30, n, n--; binomial(4*n+2, n)) \\ Altug Alkan, Nov 05 2015