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.

A368022 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+4) with i,j = 0, ..., n-1.

Original entry on oeis.org

1, 14, 3612, 14798454, 930744290905, 891107801867703108, 12977575456694246217097712, 2880177942851157900010279504962852, 9767068920318918290905853040035029840419305, 507521146153330160633968276251306280235282377512091202, 405202219609475677155580649938116235991326716758748940659564085180
Offset: 0

Views

Author

Stefano Spezia, Dec 08 2023

Keywords

Examples

			a(4) = 930744290905:
   14,   42,  132,   429;
   42,  132,  429,  1430;
  132,  429, 1430,  4862;
  429, 1430, 4862, 16796.
		

Crossrefs

Programs

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

Formula

Det(M(n)) = A006858(n+1).