cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A257633 a(n) = binomial(4*n + 2,n).

Original entry on oeis.org

1, 6, 45, 364, 3060, 26334, 230230, 2035800, 18156204, 163011640, 1471442973, 13340783196, 121399651100, 1108176102180, 10142940735900, 93052749919920, 855420636763836, 7877932561061640, 72667580816130436, 671262558647881200, 6208770443303347920
Offset: 0

Views

Author

Peter Bala, Nov 04 2015

Keywords

Crossrefs

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

Formula

The o.g.f. equals f(x)*g(x)^2, where f(x) is the o.g.f. for A005810 and g(x) is the o.g.f. for A002293. More generally, f(x)*g(x)^k is the o.g.f. for the sequence binomial(4*n + k,n). Cf. A262977 (k = -1), A005810 (k = 0), A052203 (k = 1), A224274 (k = 3) and A004331 (k = 4).