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.

A365755 Expansion of (1/x) * Series_Reversion( x*(1-x)/(1+x)^5 ).

Original entry on oeis.org

1, 6, 52, 530, 5919, 70098, 864784, 10994490, 143042020, 1895316632, 25487708844, 346976558318, 4772478619146, 66222166440780, 925880434336320, 13030945427540170, 184467676431001644, 2624828100099166536, 37521220349342729680, 538573138719587026440
Offset: 0

Views

Author

Seiichi Manyama, Sep 18 2023

Keywords

Crossrefs

Programs

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

Formula

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