OFFSET
0,4
COMMENTS
Sum of entries in n-th row is A002110(n), the product of the first n primes (primorial numbers, first definition).
From Peter Munn, Apr 10 2017: (Start)
T(n,k) is a count of those integers in any interval of A002110(n) integers that have exactly k of the first n primes as divisors. The count is the same for each such interval because each of the first n primes is a factor of an integer m if and only if it is a factor of m + A002110(n).
(End)
EXAMPLE
Triangle begins:
1
1 1
2 3 1
8 14 7 1
48 92 56 13 1
480 968 652 186 23 1
PROG
(PARI) primo(n) = prod(k=1, n, prime(k));
row(n) = {v = vector(n+1); for (k=1, primo(n), f = factor(k)[, 1]; v[1+sum(j=1, #f, primepi(f[j])<=n)]++; ); v; } \\ Michel Marcus, Apr 29 2017
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Matthew Vandermast, Jun 24 2004
STATUS
approved