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.

A177233 a(n) = determinant of n X n circulant matrix whose first row consists of the first n positive cubes.

Original entry on oeis.org

1, -63, 19548, -16772800, 30639466125, -102246541593840, 563353842016350448, -4769009964086911303680, 58776044218330627534385025, -1011412682021947060157500000000, 23501115057383512064004090511345788, -717470258224423085595445968714004955136
Offset: 1

Views

Author

Missouri State University Problem-Solving Group (MSUPSG(AT)MissouriState.edu), May 05 2010

Keywords

Examples

			a(3) = 19548 = determinant
|1, 8, 27|
|27, 1, 8|
|8, 27, 1|
		

Crossrefs

Programs

  • Mathematica
    f[n_] := Det[ Table[ RotateLeft[ Range@ n^3, -j], {j, 0, n - 1}]]; Array[f, 12] (* Robert G. Wilson v, Aug 31 2014 *)

Formula

a(n) = (-1)^(n-1)*(n+1)^2*n^(n-2)*(n^(2n)-b(n)^n-c(n)^n+(n^2+3n+3)^n)/24
where
b(n)=(2*n^2+3*n-3+sqrt(15n^2+18n-9)i)/2 and
c(n)=(2*n^2+3*n-3-sqrt(15n^2+18n-9)i)/2
Showing 1-1 of 1 results.