reserve a,b,i,k,m,n for Nat;
reserve s,z for non zero Nat;
reserve c for Complex;

theorem
  ex k st a^2 = 7*k or a^2 = 7*k+1 or a^2 = 7*k+2 or a^2 = 7*k+4
  proof
    per cases;
    suppose not 7 divides a;
      hence thesis by Th46;
    end;
    suppose 7 divides a;
      then 7 divides a^2 by INT_2:2;
      hence thesis;
    end;
  end;
