login
A063173
Prime-composite array T(m,n): highest power of the n-th prime that divides the m-th composite, read by antidiagonals.
5
2, 1, 0, 3, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
OFFSET
1,1
EXAMPLE
Let p(n) be the n-th prime and c(m) the m-th composite. T(1,1)=2 because c(1)=4, p(1)=2 and the highest power of 2 in 4 is 2^2. T(2,1)=1 because c(2)=6, p(1)=2 and the highest power of 2 in 6 is 2^1. T(1,2)=0 because c(1)=4, p(2)=3 and the highest power of 3 in 4 is 3^0. So the sequence starts 2, 1, 0, ...
Array begins
2 0 0 0 0 0 0 ...
1 1 0 0 0 0 0 ...
3 0 0 0 0 0 0 ...
0 2 0 0 0 0 0 ...
1 0 1 0 0 0 0 ...
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Neil Fernandez, Jul 09 2001
STATUS
approved