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.

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

Original entry on oeis.org

1, 3, 12, 27, -75, -444, 4734, 11532, -466782, 1626750, 50347410, -708889296, -2196754992, 179878246239, -1795732735128, -24691325878980, 953903679982809, -7684914725016600, -226465559200630566, 7742131606464606525, -58889021552013912990
Offset: 0

Views

Author

Seiichi Manyama, Mar 27 2023

Keywords

Crossrefs

Main diagonal of A361840.

Programs

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

Formula

a(n) = [x^n] 1/(1 - 9*x*(1-x)^n)^(1/3).