A299792 Numbers k such that A177894(k) = 0.
0, 11, 22, 33, 44, 55, 66, 77, 88, 99, 111, 222, 333, 444, 555, 666, 777, 888, 999, 1001, 1010, 1012, 1023, 1034, 1045, 1056, 1067, 1078, 1089, 1100, 1111, 1122, 1133, 1144, 1155, 1166, 1177, 1188, 1199, 1210, 1212, 1221, 1232, 1243, 1254, 1265, 1276, 1287, 1298, 1313
Offset: 1
Examples
1452 is a term because the value of the following determinant is 0: | 1 4 5 2 | | 4 5 2 1 | | 5 2 1 4 | | 2 1 4 5 |
Links
- Paolo Xausa, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Circulant Matrix
- Wikipedia, Circulant matrix
Programs
-
Mathematica
A299792Q[k_] := k == 0 || Det[NestList[RotateLeft, IntegerDigits[k], IntegerLength[k]-1]] == 0; Select[Range[0, 2000], A299792Q] (* Paolo Xausa, Mar 11 2024 *)
-
PARI
for(n=0, 1500, if(!A177894(n), print1(n, ", "))) \\ See A177894 for its program
Comments