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.

A373651 Expansion of (1 - 2*x + 3*x^2)/(1 - 2*x - 3*x^2)^(5/2).

Original entry on oeis.org

1, 3, 18, 70, 285, 1071, 3948, 14148, 49815, 172645, 590898, 2000934, 6714799, 22358805, 73947240, 243114552, 795083931, 2588073201, 8389033710, 27089339130, 87174634239, 279653734437, 894553405452, 2853968436900, 9083209323825, 28844069541651, 91405399485078
Offset: 0

Views

Author

Seiichi Manyama, Aug 06 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec((1-2*x+3*x^2)/(1-2*x-3*x^2)^(5/2))

Formula

a(n) = binomial(n+2,2) * Sum_{k=0..n} binomial(n,k) * binomial(k,n-k).
a(n) = binomial(n+2,2) * A002426(n).
a(n) = A132885(n+4,2).
a(n) = ((n+2)/n^2) * ((2*n-1)*a(n-1) + 3*(n+1)*a(n-2)).