cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A303262 Table where row n lists numbers N equal to the determinant of an n X n circulant having as a row the base n+1 digits of N.

This page as a plain text file.
%I A303262 #10 Apr 30 2018 11:42:51
%S A303262 1,1,1,8,9,28,35,1,65,80,91,1,44,99,550,854,1936,2761,3421,3732,4043,
%T A303262 4354,1,63,65,2527,3311,3969,4095,13545,13889,1,128,129,145,6066,
%U A303262 16384,16385,16512,16513,16641,18560,18577,18669,18705,90738,103759,103965,109220,120142,121920
%N A303262 Table where row n lists numbers N equal to the determinant of an n X n circulant having as a row the base n+1 digits of N.
%e A303262 The table starts
%e A303262 (n=1) 1,
%e A303262 (n=2) 1,
%e A303262 (n=3) 1, 8, 9, 28, 35,
%e A303262 (n=4) 1, 65, 80, 91,
%e A303262 (n=5) 1, 44, 99, 550, 854, 1936, 2761, 3421, 3732, 4043, 4354,
%e A303262 (n=6) 1, 63, 65, 2527, 3311, 3969, 4095, 13545, 13889,
%e A303262 (n=7) 1, 128, 129, 145, 6066, 16384, 16385, 16512, 16513, 16641, 18560, 18577, 18669, 18705, 90738, 103759, 103965, ...
%e A303262 For example, T(3,1) = 1 because the determinant of the circulant starting with [0, 0, 1] is 1. For the same reason each row starts with 1.
%e A303262 T(3,2) = 8 = 020[4] (digits in base 4) = det(circulant([0, 2, 0])).
%e A303262 T(3,5) = 35 = 203[4] = det(circulant([2, 0, 3])).
%o A303262 (PARI) for(n=1,7,for(k=1,(n+1)^n-1,d=Vec(digits(k,n+1),-n);abs(matdet(matrix(n,n,i,j,d[(j-i)%n+1])))==k&&print1(k",")))
%Y A303262 Cf. A303261, A303260, A219324, A219325, A219326, A219327.
%K A303262 nonn,base,tabf
%O A303262 1,4
%A A303262 _M. F. Hasler_, Apr 23 2018