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.

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

Original entry on oeis.org

1, 3, 24, 243, 2973, 41676, 652662, 11228556, 209674050, 4211011422, 90309000630, 2056139084544, 49460437075896, 1251936022103679, 33228751234896060, 922028391785300940, 26676362307801924057, 802875670635086298600
Offset: 0

Views

Author

Seiichi Manyama, Mar 27 2023

Keywords

Crossrefs

Main diagonal of A361839.

Programs

  • PARI
    a(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).