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.

A079260 Characteristic function of primes of form 4n+1 (1 if n is prime of form 4n+1, 0 otherwise).

Original entry on oeis.org

0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0
Offset: 1

Views

Author

Benoit Cloitre, Feb 04 2003

Keywords

Comments

Let M(n) denote the n X n matrix m(i,j)=0 if n divides ij-1, m(i,j) = 1 otherwise then det(M(n))=-1 if and only if n =2 or if n is prime ==1 (mod 4).
a(A002144(n)) = 1; a(A137409(n)) = 0. [From Reinhard Zumkeller, Oct 11 2008]
a(n) * A151763(n) = a(n).

Crossrefs

Cf. A066339 (partial sums).

Programs

  • Haskell
    a079260 n = fromEnum $ n `mod` 4 == 1 && a010051 n == 1
    -- Reinhard Zumkeller, Oct 06 2011
  • Mathematica
    Table[If[PrimeQ[n]&&IntegerQ[(n-1)/4],1,0],{n,120}] (* Harvey P. Dale, Jul 14 2015 *)
  • PARI
    { a(n)=if(n%4==1,isprime(n)) }; vector(100,n,a(n))