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.

A378402 a(n) = Sum_{k=0..n} binomial(n,k) * binomial(n+3*k,n).

Original entry on oeis.org

1, 5, 49, 533, 6081, 71365, 853105, 10331221, 126321409, 1556044805, 19280812849, 240054516245, 3000687934401, 37634567169477, 473365023172209, 5968699720282453, 75422513665403905, 954877942305602053, 12109526474814388273, 153801537443722913813, 1956059583033416379841
Offset: 0

Views

Author

Seiichi Manyama, Nov 25 2024

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[n,k]Binomial[n+3k,n],{k,0,n}],{n,0,20}] (* Harvey P. Dale, Nov 27 2024 *)
  • PARI
    a(n) = sum(k=0, n, binomial(n, k)*binomial(n+3*k, n));

Formula

a(n) = [x^n] (1 + x + (1 + x)^4)^n.