The tail command displays the last lines of a file. tail -15 shows the last 15 lines. Conversely, head displays the beginning of a file. The -n option (default 10) specifies line count, so tail -15 filename is correct.
tail -15 filename prints the last 15 lines of a file, since tail by design shows the end of a file and the -N flag sets how many lines to display. head -15 would instead show the first 15 lines, and zcat is for viewing compressed files, not line counts.