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.

A366405 G.f. A(x) satisfies A(x) = (1 + x / A(x)^(5/2)) / (1 - x).

Original entry on oeis.org

1, 2, -3, 22, -138, 1012, -7839, 63506, -531024, 4549276, -39723484, 352237844, -3163252976, 28711196184, -262964888021, 2427319896584, -22557930343459, 210889624536396, -1981972609174109, 18714482015314016, -177453862702083994, 1689045253793239952
Offset: 0

Views

Author

Seiichi Manyama, Oct 09 2023

Keywords

Crossrefs

Programs

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

Formula

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