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.

A364340 G.f. satisfies A(x) = (1 + x*A(x)) * (1 + x*A(x)^6).

Original entry on oeis.org

1, 2, 15, 179, 2502, 38262, 619991, 10459410, 181771289, 3231782239, 58505593456, 1074766446526, 19984671314164, 375414901633692, 7113886504446443, 135820770971898805, 2610186429457347486, 50452256583633573513, 980187901557594671335, 19130197594133100828170, 374894511736219913097375
Offset: 0

Views

Author

Seiichi Manyama, Jul 19 2023

Keywords

Crossrefs

Programs

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

Formula

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