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

A384902 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 A384897.

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 2, 3, 0, 1, 3, 7, 3, 0, 1, 4, 12, 12, -8, 0, 1, 5, 18, 28, -1, -81, 0, 1, 6, 25, 52, 30, -160, -462, 0, 1, 7, 33, 85, 95, -201, -1125, -1140, 0, 1, 8, 42, 128, 205, -156, -1932, -3738, 1662, 0, 1, 9, 52, 182, 372, 36, -2760, -8073, -2150, 42210, 0
Offset: 0

Views

Author

Seiichi Manyama, Jun 12 2025

Keywords

Examples

			Square array begins:
  1,   1,    1,    1,    1,   1, ...
  0,   1,    2,    3,    4,   5, ...
  0,   3,    7,   12,   18,  25, ...
  0,   3,   12,   28,   52,  85, ...
  0,  -8,   -1,   30,   95, 205, ...
  0, -81, -160, -201, -156,  36, ...
		

Crossrefs

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

Programs

  • PARI
    b(n, k) = if(n*k==0, 0^n, (-1)^n*k*sum(j=1, n, binomial(-2*n+3*j+k-1,j-1)*b(n-j,3*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(-2*n+3*j+k-1,j-1) * b(n-j,3*j)/j. Then A(n,k) = b(n,-k).

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

Original entry on oeis.org

1, 1, 3, 0, -23, -51, 27, 920, 5469, 4836, -84822, -515991, -1733406, 2541688, 64653336, 324962160, 800371560, -3164656113, -49575569463, -260541998755, -734864189592, 1794936737274, 39518722602456, 260877913774320, 1122691536976305, 1485180173013631
Offset: 0

Views

Author

Seiichi Manyama, Jun 12 2025

Keywords

Crossrefs

Column k=1 of A384901.

Programs

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

Formula

See A384901.

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

Original entry on oeis.org

1, 1, 3, 6, 10, -39, -546, -3563, -18918, -68472, -47978, 2060310, 25856241, 210422728, 1367033271, 6837535155, 18339297562, -114989342976, -2525856651999, -27658429475813, -235591084478085, -1658029364805855, -9188248947018893, -28582654956147315, 177119046663378954
Offset: 0

Views

Author

Seiichi Manyama, Jun 12 2025

Keywords

Crossrefs

Column k=1 of A384903.

Programs

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

Formula

See A384903.
Showing 1-3 of 3 results.