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.

A381594 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 A381601.

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 2, 7, 0, 1, 3, 15, 79, 0, 1, 4, 24, 172, 1134, 0, 1, 5, 34, 280, 2475, 18953, 0, 1, 6, 45, 404, 4044, 41280, 353134, 0, 1, 7, 57, 545, 5863, 67365, 766291, 7154751, 0, 1, 8, 70, 704, 7955, 97620, 1246534, 15460284, 155181240, 0, 1, 9, 84, 882, 10344, 132486, 1801536, 25051422, 333896388, 3565276582, 0
Offset: 0

Views

Author

Seiichi Manyama, Mar 01 2025

Keywords

Examples

			Square array begins:
  1,      1,      1,       1,       1,       1,       1, ...
  0,      1,      2,       3,       4,       5,       6, ...
  0,      7,     15,      24,      34,      45,      57, ...
  0,     79,    172,     280,     404,     545,     704, ...
  0,   1134,   2475,    4044,    5863,    7955,   10344, ...
  0,  18953,  41280,   67365,   97620,  132486,  172434, ...
  0, 353134, 766291, 1246534, 1801536, 2439615, 3169770, ...
		

Crossrefs

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

Programs

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

Formula

A(n,0) = 0^n; A(n,k) = k * Sum_{j=0..n} binomial(3*n+j+k,j)/(3*n+j+k) * A(n-j,3*j).

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

Original entry on oeis.org

1, 1, 5, 39, 383, 4360, 55201, 758877, 11157081, 173623407, 2838995592, 48515016273, 862904739711, 15923514065053, 304089551295359, 5997295071211547, 121944040723497105, 2552667957311169834, 54944459391676448365, 1214747696691087352576, 27559533140410855702244
Offset: 0

Views

Author

Seiichi Manyama, Mar 01 2025

Keywords

Crossrefs

Column k=1 of A381592.
Cf. A120971.

Programs

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

Formula

See A381592.

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

Original entry on oeis.org

1, 2, 11, 88, 869, 9876, 124473, 1701630, 24870695, 384795184, 6257294780, 106377162620, 1882982975521, 34593496243070, 657935674477431, 12927331575084846, 261951066040220637, 5466177185459699916, 117315664923801661485, 2586804284853871362408
Offset: 0

Views

Author

Seiichi Manyama, Mar 01 2025

Keywords

Crossrefs

Column k=2 of A381592.

Programs

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

Formula

See A381592.
G.f.: B(x)^2, where B(x) is the g.f. of A381600.
Showing 1-3 of 3 results.