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.

A384977 Square array A(n,k), n >= 0, k >= 0, read by antidiagonals downwards, where column k is the expansion of B(x)^k, where B(x) is the g.f. of A384974.

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 2, 3, 0, 1, 3, 7, 8, 0, 1, 4, 12, 22, 25, 0, 1, 5, 18, 43, 75, 57, 0, 1, 6, 25, 72, 159, 212, 22, 0, 1, 7, 33, 110, 287, 516, 372, -1003, 0, 1, 8, 42, 158, 470, 1032, 1296, -1220, -9967, 0, 1, 9, 52, 217, 720, 1836, 3126, 378, -20271, -67627, 0
Offset: 0

Views

Author

Seiichi Manyama, Jun 14 2025

Keywords

Examples

			Square array begins:
  1,  1,   1,    1,    1,    1,     1, ...
  0,  1,   2,    3,    4,    5,     6, ...
  0,  3,   7,   12,   18,   25,    33, ...
  0,  8,  22,   43,   72,  110,   158, ...
  0, 25,  75,  159,  287,  470,   720, ...
  0, 57, 212,  516, 1032, 1836,  3018, ...
  0, 22, 372, 1296, 3126, 6295, 11353, ...
		

Crossrefs

Columns k=0..1 give A000007, A384974.

Programs

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

Formula

Let b(n,k) = 0^n if n*k=0, otherwise b(n,k) = (-1)^n * k * Sum_{j=1..n} binomial(-3*n+3*j+k-1,j-1) * b(n-j,2*j)/j. Then A(n,k) = b(n,-k).

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

Original entry on oeis.org

1, 1, 3, 4, 3, -15, -118, -336, -595, 1467, 20391, 96205, 353686, 574786, -2717256, -30598208, -197828371, -841728699, -2599029153, -1309899955, 56975269295, 522707807733, 3425068059553, 16747743739845, 63468629516172, 111911654532374, -907903172853988, -12555837715110897
Offset: 0

Views

Author

Seiichi Manyama, Jun 15 2025

Keywords

Crossrefs

Programs

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

Formula

See A385018.
Showing 1-2 of 2 results.