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-2 of 2 results.

A361840 Square array T(n,k), n>=0, k>=0, read by antidiagonals downwards, where column k is the expansion of 1/(1 - 9*x*(1 - x)^k)^(1/3).

Original entry on oeis.org

1, 1, 3, 1, 3, 18, 1, 3, 15, 126, 1, 3, 12, 90, 945, 1, 3, 9, 57, 585, 7371, 1, 3, 6, 27, 297, 3969, 58968, 1, 3, 3, 0, 78, 1629, 27657, 480168, 1, 3, 0, -24, -75, 207, 9216, 196290, 3961386, 1, 3, -3, -45, -165, -438, 459, 53217, 1411965, 33011550
Offset: 0

Views

Author

Seiichi Manyama, Mar 26 2023

Keywords

Examples

			Square array begins:
     1,    1,    1,   1,    1,    1, ...
     3,    3,    3,   3,    3,    3, ...
    18,   15,   12,   9,    6,    3, ...
   126,   90,   57,  27,    0,  -24, ...
   945,  585,  297,  78,  -75, -165, ...
  7371, 3969, 1629, 207, -438, -444, ...
		

Crossrefs

Columns k=0..3 give A004987, A361843, A361844, A361845.
Main diagonal gives A361847.

Programs

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

Formula

n*T(n,k) = 3 * Sum_{j=0..k} (-1)^j * binomial(k,j)*(3*n-2-2*j)*T(n-1-j,k) for n > k.
T(n,k) = (-1)^n * Sum_{j=0..n} 9^j * binomial(-1/3,j) * binomial(k*j,n-j).

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).
Showing 1-2 of 2 results.