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.

A096013 Irregular triangle read by rows: row n lists quadratic nonresidues modulo n.

Original entry on oeis.org

2, 2, 3, 2, 3, 2, 5, 3, 5, 6, 2, 3, 5, 6, 7, 2, 3, 5, 6, 8, 2, 3, 7, 8, 2, 6, 7, 8, 10, 2, 3, 5, 6, 7, 8, 10, 11, 2, 5, 6, 7, 8, 11, 3, 5, 6, 10, 12, 13, 2, 3, 5, 7, 8, 11, 12, 13, 14, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 3, 5, 6, 7, 10, 11, 12, 14, 2, 3, 5, 6, 8, 11, 12, 14, 15, 17, 2, 3, 8
Offset: 3

Views

Author

Cino Hilliard, Jul 21 2004

Keywords

Comments

The length of row n is A095972(n).

Examples

			Triangle starts:
  2;
  2, 3;
  2, 3;
  2, 5;
  3, 5, 6;
  2, 3, 5, 6, 7;
  2, 3, 5, 6, 8;
  ...
		

Crossrefs

Cf. A095972.

Programs

  • Mathematica
    (* As a Triangle *) Table[Complement[Range[n - 1], Mod[Range[n/2]^2, n]], {n, 3, 30}] // Column (* Mo Li, Sep 01 2019 *)
  • PARI
    isA096013(n,m)={local(r);r=1;for(i=0,floor(m/2),if(i^2%m==n,r=0));r} \\ Michael B. Porter, May 05 2010

Extensions

Edited by Don Reble, May 07 2006