A096013 Irregular triangle read by rows: row n lists quadratic nonresidues modulo n.
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
Examples
Triangle starts: 2; 2, 3; 2, 3; 2, 5; 3, 5, 6; 2, 3, 5, 6, 7; 2, 3, 5, 6, 8; ...
Links
- T. D. Noe, Rows n = 3..100, flattened
- Eric Weisstein's World of Mathematics, Quadratic Nonresidue
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
Comments