A335970 Index of the least Wendt determinant (A048954(k)) that is divisible by the least prime of the form k*prime(n) + 1.
3, 10, 26, 28, 32, 46, 38, 58, 44, 110, 22, 88, 122, 70, 134, 44, 164, 70, 106, 212, 94, 70, 146, 128, 208, 62, 142, 116, 310, 56, 94, 212, 86, 280, 320, 262, 316, 82, 110, 122, 182, 160, 362, 142, 284, 280, 340, 112, 56, 64, 254, 308, 250, 368, 104, 272, 242, 292, 226
Offset: 1
Keywords
Examples
a(2) = 10 gives k = 10, Wendt(10) = -210736858987743 = -1*3*11^9*31^3 and p = prime(2) = 3. Hence with k = 10 and p = 3, Wendt(k) is the least Wendt determinant divisible by the least prime of the form p*k + 1.
Links
- Gerard P. Michon, Factorization of Wendt's Determinant (table for n=1 to 114).
- Eric Weisstein's World of Mathematics, Circulant matrix.
- Wikipedia, Circulant matrix.
Crossrefs
Cf. A048954.
Programs
-
Mathematica
w[n_] := Module[{x}, Resultant[x^n-1, (1+x)^n-1, x]]; lst = {}; Do[q=1; While[Mod[q, 6]==0||!PrimeQ[r=1+Prime[n]*q]||!IntegerQ[w[q]/r], q++]; AppendTo[lst, q], {n, 1, 60}]; lst
Comments