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

A381166 a(n) is the permanent of the n X n matrix whose element (i,j) is equal to A008277(i+4, j) with 1 <= i,j <= n.

Original entry on oeis.org

1, 1, 46, 23216, 70437736, 911400637082, 39931366088759328, 5015203546888139970264, 1592320463242701429692077472, 1158339311156769223634640734447744, 1783702957209729441902140461938160455424, 5447268928199100257603373050876725987854119216, 31237114830378466799129128930824084710690680271414364
Offset: 0

Views

Author

Stefano Spezia, Feb 15 2025

Keywords

Examples

			a(3) = 23216:
  [1, 15,  25]
  [1, 31,  90]
  [1, 63, 301]
		

Crossrefs

Cf. A008277, A134375 (determinant), A381160.

Programs

  • Mathematica
    a[n_]:=Permanent[Table[StirlingS2[i+4, j], {i, n}, {j, n}]]; Join[{1}, Array[a, 12]]
  • PARI
    a(n) = matpermanent(matrix(n, n, i, j, stirling(i+4,j,2))); \\ Michel Marcus, Feb 16 2025
Showing 1-1 of 1 results.