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.

A086815 a(n)=(n-1)*n^(2*n).

Original entry on oeis.org

0, 16, 1458, 196608, 39062500, 10883911680, 4069338437094, 1970324836974592, 1200757082375992968, 900000000000000000000, 814027493868397611133210, 874465319237299285467856896, 1100799962319223399900795392108
Offset: 1

Views

Author

Benoit Cloitre, Aug 06 2003

Keywords

Comments

(-1)*determinant of the 2n X 2n matrix M_(i,j)=j if (i+j) is multiple of n, M_(i,j)=i otherwise.

Examples

			For n=3 the matrix is : [1 2 1 1 5 1], [1 2 2 4 2 2], [3 3 3 3 3 6], [4 2 4 4 5 4], [1 5 5 4 5 5], [6 6 3 6 6 6]
		

Crossrefs

Cf. A062206.

Programs

  • Mathematica
    Table[(n-1)n^(2n),{n,20}] (* Harvey P. Dale, Jul 23 2013 *)
  • PARI
    a(n)=(n-1)*n^(2*n)