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.

A365185 G.f. satisfies A(x) = 1 + x*A(x)^5*(1 + x*A(x)).

Original entry on oeis.org

1, 1, 6, 46, 411, 3996, 41062, 438662, 4823133, 54221518, 620404859, 7201317005, 84590041441, 1003656037278, 12010861830069, 144804336388912, 1757106190680819, 21443109365898743, 263009775111233392, 3240530659303505547, 40088688455992604594
Offset: 0

Views

Author

Seiichi Manyama, Aug 25 2023

Keywords

Crossrefs

Programs

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

Formula

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