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.

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

Original entry on oeis.org

1, 1, 6, 50, 485, 5130, 57391, 667777, 7999095, 97986680, 1221813880, 15456556791, 197887386913, 2559189842240, 33383097891135, 438714241508615, 5803049210371375, 77199163872173757, 1032215519193531310, 13864180990526161995, 186975433988014039830
Offset: 0

Views

Author

Seiichi Manyama, Aug 25 2023

Keywords

Crossrefs

Programs

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

Formula

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