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.

A335581 a(n) is the determinant of the 4 X 4 matrix whose k-th entry (when read by rows) is the n-th prime that is congruent to 2*k-1 (mod 32).

Original entry on oeis.org

-9076736, 103022592, 268615680, 1323499520, 629882880, 460603392, -399949824, -3920560128, 1911881728, -10804379648, 40168226816, 39260946432, 12450906112, 43444027392, 38643318784, 36209459200, 46906195968, 176683548672, 194023292928, 385306836992, 347375714304, 132172283904, -2076180480
Offset: 1

Views

Author

J. M. Bergot and Robert Israel, Jan 26 2021

Keywords

Comments

All entries are divisible by 2^14.

Examples

			For n=3, a(3) = det(257, 131, 101, 103; 137, 107, 173, 239; 241, 179, 181, 311; 313, 283, 157, 191) = 268615680.
		

Crossrefs

Programs

  • Maple
    N:= 100: # for a(1)..a(N)
    R:= NULL:
    L:= [seq(2*i-33,i=1..16)]:
    for k from 1 to N do
      for i from 1 to 16 do
       for x from L[i]+32 by 32 do until isprime(x);
       L[i]:= x;
      od;
      R:= R, LinearAlgebra:-Determinant(Matrix(4,4,L));
    od;
    R;