reserve k for Nat;
reserve p for Prime;

theorem Ttool19a:
  p < 19 implies
  p = 2 or p = 3 or p = 5 or p = 7 or p = 11 or p = 13 or p = 17
  proof
    assume p < 19;
    then 1+1 < p+1 & p < 18+1 by XREAL_1:6,INT_2:def 4;
    then per cases by NAT_1:13;
    suppose 2 <= p < 17;
      hence thesis by Ttool17a;
    end;
    suppose 17 <= p <= 17+1;
      hence thesis by XPRIMES0:18,NAT_1:9;
    end;
  end;
