theorem
  k <> 0 implies k in Seg(k + n)
proof
  assume k <> 0;
  then
A1: 0 + 1 <= k by NAT_1:13;
  k <= k + n by NAT_1:12;
  hence thesis by A1,FINSEQ_1:1;
end;
