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.

A290539 Determinant of circulant matrix of order eight with entries in the first row that are (-1)^(j-1) * Sum_{k>=0} (-1)^k*binomial(n,8*k+j-1), for j=1..8.

Original entry on oeis.org

1, 0, 0, 0, 0, 0, 0, 0, -8489565952, -31872959692800, -932158289501356032, -4169183582652459909120, -5144394740685202662359040, -2505627397073121215653085184, -500556279165026162974748835840, 0, 20396260728315877590754520243175424
Offset: 0

Views

Author

Keywords

Comments

a(n) = 0 for n == 7 (mod 8).

Crossrefs

Programs

  • Maple
    seq(LinearAlgebra:-Determinant(Matrix(8,8,shape=Circulant[seq(
    (-1)^(j-1)*add((-1)^k*binomial(n,8*k+j-1),k=0..n/8),j=1..8)])), n=0..20); # Robert Israel, Aug 11 2017
  • Mathematica
    ro[n_] := Table[(-1)^(j-1) Sum[(-1)^k*Binomial[n, 8k+j-1], {k, 0, n/8}], {j, 1, 8}];
    M[n_] := Table[RotateRight[ro[n], m], {m, 0, 7}];
    a[n_] := Det[M[n]];
    Table[a[n], {n, 0, 20}] (* Jean-François Alcover, Aug 10 2018 *)