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.

A374675 a(n) = Sum_{k=0..n} binomial(n+k-1,n) * binomial(n+k,n).

Original entry on oeis.org

1, 2, 21, 244, 3055, 40116, 544103, 7553960, 106734195, 1528937200, 22143771386, 323613807672, 4765050473521, 70611124679564, 1052084386116915, 15750153504353872, 236766112174722235, 3572264808332407512, 54073065371555283968, 820886646834780680640
Offset: 0

Views

Author

Seiichi Manyama, Jul 16 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n, binomial(n+k-1, n)*binomial(n+k, n));

Formula

a(n) = Sum_{k=0..n} (k/(n+k)) * binomial(n+k,k)^2 for n > 0.
a(n) = (n+1) * A259335(n).