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.

A278857 a(n) = permanent M_n where M_n is the n X n matrix m(i,j) = (i-j)^2.

Original entry on oeis.org

1, 0, 1, 8, 676, 49600, 10335908, 2658757248, 1214367336000, 730771063280640, 642638269862752320, 736176718456263406080, 1122592471007868379259136, 2168016139899273930219233280, 5288852927890824307509101287680, 15889369670472598370104100032512000
Offset: 0

Views

Author

Vaclav Kotesovec, Nov 29 2016

Keywords

Crossrefs

Programs

  • Maple
    with(LinearAlgebra):
    a:= n-> `if`(n=0, 1, Permanent(Matrix(n, (i, j)-> (i-j)^2))):
    seq(a(n), n=0..16);  # Vaclav Kotesovec, Nov 30 2016, after Alois P. Heinz
  • Mathematica
    Flatten[{1, Table[Permanent[Table[(i-j)^2, {i, 1, n}, {j, 1, n}]], {n, 1, 15}]}]
  • PARI
    {a(n) = matpermanent(matrix(n, n, i, j, (i-j)^2))}
    for(n=0, 20, print1(a(n), ", ")) \\ Vaclav Kotesovec, Aug 12 2021