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.

A368024 a(n) is the permanent of the n-th order Hankel matrix of Catalan numbers M(n) whose generic element is given by M(i,j) = A000108(i+j+6) with i,j = 0, ..., n-1.

Original entry on oeis.org

1, 132, 372801, 18271508684, 14570336513383508, 184204867131613485842464, 36494318768452684668237864399892, 112700882376631374264115400599310944646268, 5412697889621813132124427516447652973723355158580585, 4039897382110972290799421201399595435416108353911344509968785100
Offset: 0

Views

Author

Stefano Spezia, Dec 08 2023

Keywords

Examples

			a(4) = 14570336513383508:
   132,   429,  1430,   4862;
   429,  1430,  4862,  16796;
  1430,  4862, 16796,  58786;
  4862, 16796, 58786, 208012.
		

Crossrefs

Cf. A000108, A335857 (determinant).
Column k=6 of A368026.

Programs

  • Mathematica
    Join[{1},Table[Permanent[Table[CatalanNumber[i+j+6],{i,0,n-1},{j,0,n-1}]],{n,9}]]
  • PARI
    C(n) = binomial(2*n, n)/(n+1); \\ A000108
    a(n) = matpermanent(matrix(n, n, i, j, C(i+j+4))); \\ Michel Marcus, Dec 11 2023