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.

A372137 G.f. A(x) satisfies A(x) = 1/( 1 - x * (1 + 9*x)^(1/3) * A(x)^2 ).

Original entry on oeis.org

1, 1, 6, 21, 181, 771, 7728, 34689, 385632, 1732971, 21041598, 92147697, 1217109951, 5099210686, 73380609681, 289623783084, 4564472639880, 16722146775195, 290985244619874, 974044248064611, 18925364858562927, 56848541164586820, 1251693011560795635
Offset: 0

Views

Author

Seiichi Manyama, Apr 20 2024

Keywords

Crossrefs

Programs

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

Formula

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