A219357 a(n) = smallest number greater than n, equal to the determinant of the circulant matrix formed by its base-n digits.
17298, 1352, 28, 28, 320, 81, 133, 104, 247, 126, 1273, 252, 793, 473, 520, 980, 832, 513, 468, 5792, 684, 1738, 2511, 684, 1520, 14711, 7588, 938, 3857, 2275, 4680, 13392, 5184, 1648, 10535, 1820, 9143, 8473, 3843, 21880, 11609, 3843
Offset: 2
Examples
In A219325 (base 2), the smallest number greater than 2 is 17298. In A219324 (base 10), the smallest number greater than 10 is 247.
Links
- Hans Havermann, Table of n, a(n) for n = 2..1200
- Hans Havermann, log plot to base 1200
- Eric W. Weisstein, MathWorld: Circulant Matrix
Programs
-
Mathematica
dcm[n_,b_] := (l = IntegerDigits[n,b]; Det[NestList[RotateRight, l, Length[l]-1]]); Table[i=b; While[dcm[i,b] != i, i++]; i, {b, 2, 43}]
Comments