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.

A366085 Expansion of (1/x) * Series_Reversion( x*(1-x)^4/(1-x-x^3) ).

Original entry on oeis.org

1, 3, 15, 90, 596, 4199, 30869, 234091, 1817720, 14380288, 115492518, 939163680, 7717237661, 63979604459, 534498370665, 4495171005567, 38026764744348, 323358790454352, 2762410748226232, 23697028402783512, 204044822552956179, 1762917281476448944
Offset: 0

Views

Author

Seiichi Manyama, Sep 28 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n\3, (-1)^k*binomial(n+1, k)*binomial(4*n-2*k+2, n-3*k))/(n+1);

Formula

a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} (-1)^k * binomial(n+1,k) * binomial(4*n-2*k+2,n-3*k).