[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A303367
Numbers equal to the determinant of a circulant matrix based on the base-7 digits of n.
4
1, 2, 3, 4, 5, 6, 27, 81, 133, 143, 144, 152, 190, 209, 250, 1125, 8569, 10934, 16401, 237568, 362306, 391257, 695751, 723260, 5294625, 6056974, 6332291, 6523631, 6669475, 11128547, 12486285, 17417491, 18682225, 19429514, 19781014, 20924092, 21671381
OFFSET
1,2
COMMENTS
Base 7 variant of A219327. See A303366 .. A303369 for other bases.
EXAMPLE
133 is in the sequence because 133 = 250[7] (in base 7) and 133 = det [2,5,0; 0,2,5; 5,0,2].
PROG
(PARI) (c(v)=abs(matdet(matrix(#v, #v, i, j, v[(j-i)%#v+1])))); for(n=1, oo, n==c(digits(n, 7))&&print1(n", "))
CROSSREFS
Cf. A303366 (base 6), A303368 (base 8), A303369 (base 9), A219327 (base 10).
Sequence in context: A359224 A262434 A246908 * A037332 A091690 A024640
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, May 05 2018
EXTENSIONS
a(25)-a(37) from Giovanni Resta, May 07 2018
STATUS
approved