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.

A366117 Expansion of (1/x) * Series_Reversion( x*(1+x+x^3)/(1+x)^3 ).

Original entry on oeis.org

1, 2, 5, 13, 33, 77, 147, 128, -726, -5870, -28918, -117501, -419748, -1330265, -3631065, -7585458, -5021553, 62555365, 485450778, 2473377984, 10459876208, 38765746168, 126610935508, 352046019398, 725506704096, 264040020875, -7980075940060, -58806846330257
Offset: 0

Views

Author

Seiichi Manyama, Sep 29 2023

Keywords

Crossrefs

Programs

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

Formula

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