OFFSET
1,3
COMMENTS
In the expansion of [1+x+x^2+...+x^(r-s)]^s, the x^n coefficient states how many factors of a(r,s) have n prime factors.
As a square array A(n,k) n>=0 k>=1 read by descending antidiagonals, A(n,k) when n>=1 is the least common period over the positive integers of the occurrence of the first n prime numbers as the k-th least operand in the respective integers' prime factorizations (written without exponents). - Peter Munn, Jan 25 2017
EXAMPLE
Triangle starts
1;
1, 2;
1, 4, 6;
1, 8, 36, 30;
1, 16, 216, 900, 210;
1, 32, 1296, 27000, 44100, 2310;
...
MAPLE
p:= proc(n) option remember; `if`(n=0, 1, ithprime(n)*p(n-1)) end:
a:= (r, s)-> p(s)^(r-s):
seq(seq(a(r, s), s=0..r-1), r=0..10); # Alois P. Heinz, Aug 22 2019
MATHEMATICA
p[0] = 1; p[s_] := p[s] = Prime[s] p[s-1];
a[r_, s_] := p[s]^(r-s);
Table[a[r, s], {r, 0, 10}, {s, 0, r-1}] // Flatten (* Jean-François Alcover, Dec 07 2019 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Alford Arnold, Jan 15 2003
EXTENSIONS
Edited by Don Reble, Nov 02 2005
STATUS
approved