|
| |
|
|
A119493
|
|
Determinant of n X n matrix of first n^2 terms of Kolakoski sequence (A000002).
|
|
10
| |
|
|
0, 1, -3, 0, -2, -3, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 140, 0, 0, 0, 0, 0, -205, 0, -44, 0, 0, 0, 0, 0, 0, 91050, 0, -1350, 8570, 65392, 0, 187556, 61650, 0, -226, 0, 1402800, -4810213, 0, 0, 0, 46764576, 122333784, 0, 0, -82777822, -11359122, 0, 54911379, 0, 0
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,3
|
|
|
COMMENTS
| When is next nonzero value, for n>11?
|
|
|
EXAMPLE
| a(3) = 0 because for instance, first row = 3rd row = (1,2,2).
a(6) = 0 because for instance, 3rd column = 6th column = (2,2,2,2,2,2).
a(7) = 0 because for instance, first column = 4th column.
a(9) = 0 because for instance, 9th column = 2 * 4th column.
|
|
|
MAPLE
| Contribution from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Oct 15 2010: (Start)
read("transforms3") ; L := BFILETOLIST("b000002.txt") ;
for s from 1 to floor(sqrt(nops(L))) do m := Matrix(1..s, 1..s) ; for r from 0 to s-1 do for c from 0 to s-1 do m[r+1, c+1] := op(1+c+r*s, L) ; end do: end do: printf("%a, \n", LinearAlgebra[Determinant](m) ) ; end do: (End)
|
|
|
CROSSREFS
| Cf. A000002.
Sequence in context: A104609 A087625 A154574 * A032531 A143394 A112455
Adjacent sequences: A119490 A119491 A119492 * A119494 A119495 A119496
|
|
|
KEYWORD
| easy,sign
|
|
|
AUTHOR
| Jonathan Vos Post (jvospost3(AT)gmail.com), May 25 2006
|
|
|
EXTENSIONS
| More terms from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Oct 15 2010
|
| |
|
|