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.

Previous Showing 11-11 of 11 results.

A367046 G.f. satisfies A(x) = 1 - x^3 + x*A(x)^3.

Original entry on oeis.org

1, 1, 3, 11, 52, 258, 1344, 7260, 40290, 228363, 1316414, 7694154, 45491247, 271594897, 1635068538, 9914851401, 60503259435, 371269891422, 2289545742174, 14181772631025, 88194284530464, 550444913949048, 3446737067467311, 21647081264988312
Offset: 0

Views

Author

Seiichi Manyama, Nov 03 2023

Keywords

Crossrefs

Programs

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

Formula

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