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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 3, 10, 57, 378, 2730, 20853, 165592, 1353297, 11307168, 96148149, 829336122, 7238765532, 63816716547, 567425771478, 5082596905629, 45820260590481, 415423374916503, 3785371205061825, 34647928319586375, 318419608552433190, 2937021429784279707
Offset: 0

Views

Author

Seiichi Manyama, Oct 16 2023

Keywords

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=0..n} binomial(2*(2*k+1),n-k) * binomial(3*k,k)/(2*k+1).
Showing 1-1 of 1 results.