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.

A225764 Permanent of the n X n matrix M_n = [m_n(i,j)] with m_n(i,j) = Stirling2(n+i,j) for 1<=i,j<=n.

Original entry on oeis.org

1, 1, 10, 3206, 70437736, 183833539918302, 87416643970622777251260, 10762624962747767163398087106191432, 462465255409000135911575652811547463563975232544, 8991898462406411877745541835505866750273920745448784932109344640
Offset: 0

Views

Author

Alois P. Heinz, Jul 25 2013

Keywords

Examples

			a(3) = Permanent([1, 7, 6; 1, 15, 25; 1, 31, 90]) = 3206.
		

Crossrefs

Cf. A036740 (determinant of M_n).

Programs

  • Maple
    with(LinearAlgebra):
    a:= n-> `if`(n=0, 1, Permanent(Matrix(n, (i, j)-> Stirling2(n+i, j)))):
    seq(a(n), n=0..10);
  • Mathematica
    a[n_] := Permanent[Table[StirlingS2[n+i, j], {i, n}, {j, n}]]; a[0] = 1; Table[a[n], {n, 0, 10}] (* Jean-François Alcover, Jan 07 2016 *)