OFFSET
0,4
COMMENTS
Each row k is a multiplicative function, being in essence "the k-th power" of A003961, i.e., A(row,col) = A003961^row (col). Zeroth power gives an identity function, A001477, which occurs as the row zero.
The terms in the same column have the same prime signature.
The array is read by antidiagonals: A(0,0), A(0,1), A(1,0), A(0,2), A(1,1), A(2,0), ... .
LINKS
FORMULA
A(0,n) = n, A(row,0) = 0, A(row>0,n>0) = A003961(A(row-1,n)).
EXAMPLE
The top-left corner of the array:
0, 1, 2, 3, 4, 5, 6, 7, 8, ...
0, 1, 3, 5, 9, 7, 15, 11, 27, ...
0, 1, 5, 7, 25, 11, 35, 13, 125, ...
0, 1, 7, 11, 49, 13, 77, 17, 343, ...
0, 1, 11, 13, 121, 17, 143, 19,1331, ...
0, 1, 13, 17, 169, 19, 221, 23,2197, ...
...
PROG
(Scheme, with function factor from with Aubrey Jaffer's SLIB Scheme library)
(require 'factor)
(define (ifactor n) (cond ((< n 2) (list)) (else (sort (factor n) <))))
CROSSREFS
Taking every second column from column 2 onward gives array A246278 which is a permutation of natural numbers larger than 1.
Transpose: A242379.
Row 0: A001477, Row 1: A003961 (from 1 onward), Row 2: A357852 (from 1 onward), Row 3: A045968 (from 7 onward), Row 4: A045970 (from 11 onward).
Column 2: A000040 (primes), Column 3: A065091 (odd primes), Column 4: A001248 (squares of primes), Column 6: A006094 (products of two successive primes), Column 8: A030078 (cubes of primes).
KEYWORD
nonn,tabl
AUTHOR
Antti Karttunen, May 12 2014
STATUS
approved