login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A177233
a(n) = determinant of n X n circulant matrix whose first row consists of the first n positive cubes
0
1, -63, 19548, -16772800, 30639466125, -102246541593840, 563353842016350448, -4769009964086911303680, 58776044218330627534385025, -1011412682021947060157500000000, 23501115057383512064004090511345788, -717470258224423085595445968714004955136
OFFSET
1,2
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
EXAMPLE
a(3) = 19548 = determinant
|1, 8, 27|
|27, 1, 8|
|8, 27, 1|
MATHEMATICA
f[n_] := Det[ Table[ RotateLeft[ Range@ n^3, -j], {j, 0, n - 1}]]; Array[f, 12] (* Robert G. Wilson v, Aug 31 2014 *)
CROSSREFS
Sequence in context: A132594 A212932 A349902 * A183482 A327416 A001238
KEYWORD
easy,sign
AUTHOR
Missouri State University Problem-Solving Group (MSUPSG(AT)MissouriState.edu), May 05 2010
STATUS
approved