login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A260684
Irregular triangular array read by rows. Row n gives the primes in the prime factorization of n! that have exponent of 1.
1
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, 11, 13, 17, 19, 13, 17, 19, 13, 17, 19, 23, 13, 17, 19, 23, 13, 17, 19, 23
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
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
Cf. A000142.
The last entry in each row gives A007917.
Sequence in context: A108035 A202503 A049747 * A029093 A369788 A301541
KEYWORD
nonn,tabf
AUTHOR
Geoffrey Critzer, Nov 15 2015
STATUS
approved