OFFSET
2,1
COMMENTS
For any prime p in row n, binomial(n,p)==1 (mod p). This is a consequence of Sylow's (3rd) Theorem. For these primes the number of p-Sylow subgroups in S_n is binomial(n,p)*(p-2)!. By Wilson's Theorem (p-2)!==1 (mod p) so that binomial(n,p)==1 (mod p).
LINKS
Alois P. Heinz, Rows n = 2..500, flattened
EXAMPLE
2;
2, 3;
3;
3, 5;
5;
5, 7;
5, 7;
5, 7;
7;
7, 11;
7, 11;
7, 11, 13;
11, 13;
11, 13;
11, 13;
11, 13, 17;
11, 13, 17;
11, 13, 17, 19;
11, 13, 17, 19;
MATHEMATICA
Table[Select[FactorInteger[n!], #[[2]] == 1 &][[All, 1]], {n, 2, 20}] // Grid
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Geoffrey Critzer, Nov 15 2015
STATUS
approved