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.

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

Original entry on oeis.org

1, 11, 205, 4647, 116873, 3135635, 87924597, 2545845135, 75534363601, 2284439539035, 70166186106333, 2182759455876663, 68630655620066265, 2177561996773904483, 69632831106680348165, 2241852665024904670239, 72608750028928583936673
Offset: 0

Views

Author

Seiichi Manyama, Mar 20 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=20, x='x+O('x^N)); Vec(serreverse(x*(1-4*x)^3/(1-x))/x)
    
  • PARI
    a(n) = sum(k=0, n, 3^k*binomial(3*n+k+2, k)*binomial(3*n+1, n-k))/(n+1);

Formula

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