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.

A379279 G.f. A(x) satisfies A(x) = ( (1 + x*A(x)^2) * (1 + x*A(x)) )^2.

Original entry on oeis.org

1, 4, 30, 288, 3125, 36490, 447478, 5683186, 74105002, 986302778, 13344661479, 182998935930, 2537838036761, 35530970858236, 501523116910044, 7129275916213606, 101973703002773268, 1466574750062589956, 21194869324964207133, 307642575576365729486, 4482940969372057898247
Offset: 0

Views

Author

Seiichi Manyama, Dec 19 2024

Keywords

Crossrefs

Programs

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

Formula

G.f.: B(x)^2 where B(x) is the g.f. of A215715.
a(n) = Sum_{k=0..n} binomial(2*n+2*k+2,k) * binomial(2*n+2*k+2,n-k)/(n+k+1).