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.

A365180 G.f. satisfies A(x) = 1 + x*A(x)^4*(1 + x*A(x)).

Original entry on oeis.org

1, 1, 5, 31, 223, 1740, 14328, 122549, 1078197, 9695359, 88710199, 823247686, 7730244098, 73310150097, 701163085849, 6755544043969, 65506554804129, 638794412442172, 6260571309256152, 61632794482411367, 609197871548209907, 6043456939539775056
Offset: 0

Views

Author

Seiichi Manyama, Aug 25 2023

Keywords

Crossrefs

Programs

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

Formula

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