OFFSET
0,1
COMMENTS
The first column of the array is given by A123098; subsequent columns are obtained by applying the function A003961, i.e., replacing each prime factor by the next larger prime. - M. F. Hasler, Sep 17 2016
Interpretation with respect to A329329 from Peter Munn, Feb 08 2020: (Start)
With respect to the ring defined by A329329 and A059897, the first row gives powers of 3, the first column gives powers of 6, both in order of increasing exponent, and the body of the table gives their products. A329049 is the equivalent table in which the first column gives powers of 4.
A099884 is the equivalent table for the ring defined by A048720 and A003987. That ring is an image of the polynomial ring GF(2)[x] using a standard representation of the polynomials as integers. A329329 describes a comparable mapping to integers from the related polynomial ring GF(2)[x,y].
Using these mappings, the tables here and in A099884 are matching images: the first row represents powers of x, the first column represents powers of (x+1) and the body of the table gives their products.
Hugo van der Sanden's formula (see formula section) indicates that A019565 provides a mapping from A099884. In the wider terms described above, A019565 is an injective homomorphism between images of the 2 polynomial rings, and maps the image of each GF(2)[x] polynomial to the image of the equivalent GF(2)[x,y] polynomial.
(End)
LINKS
Alois P. Heinz, Antidiagonals n = 0..125, flattened
C. Cobeli, A. Zaharescu, A game with divisors and absolute differences of exponents, Journal of Difference Equations and Applications, Vol. 20, #11, 2014.
C. Cobeli, A. Zaharescu, A game with divisors and absolute differences of exponents, arXiv:1411.1334 [math.NT], 2014.
FORMULA
T(n,1) = A123098(n), T(n,m+1) = A003961(T(n,m)), for all n >= 0, m >= 1. - M. F. Hasler, Sep 17 2016
T(n,m) = Prod_{k=0..n} prime(k+m)^(!(n-k & k)) where !x is 1 if x=0 and 0 else, and & is binary AND. - M. F. Hasler, Sep 18 2016
From Antti Karttunen, Sep 18 2016: (Start)
For n >= 1, m >= 1, T(n,m) = lcm(T(n-1,m),T(n-1,m+1)) / gcd(T(n-1,m),T(n-1,m+1)).
(End)
From Peter Munn, Jan 08 2020: (Start)
T(n,k) = A329329(T(n,1), T(0,k)).
(End)
EXAMPLE
The top left corner of the array, row index 0..5, column index 1..10:
2, 3, 5, 7, 11, 13, 17, 19, 23, 29
6, 15, 35, 77, 143, 221, 323, 437, 667, 899
10, 21, 55, 91, 187, 247, 391, 551, 713, 1073
210, 1155, 5005, 17017, 46189, 96577, 215441, 392863, 765049, 1363783
22, 39, 85, 133, 253, 377, 527, 703, 943, 1247
858, 3315, 11305, 33649, 95381, 198679, 370481, 662929, 1175921, 1816879
MAPLE
T:= proc(n, m) option remember; `if`(n=0, ithprime(m),
T(n-1, m)*T(n-1, m+1)/igcd(T(n-1, m), T(n-1, m+1))^2)
end:
seq(seq(T(n, 1+d-n), n=0..d), d=0..10); # Alois P. Heinz, Feb 28 2015
MATHEMATICA
T[n_, m_] := T[n, m] = If[n == 0, Prime[m], T[n-1, m]*T[n-1, m+1]/GCD[T[n-1, m], T[n-1, m+1]]^2]; Table[Table[T[n, 1+d-n], {n, 0, d}], {d, 0, 10}] // Flatten (* Jean-François Alcover, Mar 09 2015, after Alois P. Heinz *)
PROG
(PARI) T=matrix(N=15, N); for(j=1, N, T[1, j]=prime(j)); (f(x, y)=x*y/gcd(x, y)^2); for(k=1, N-1, for(j=1, N-k, T[k+1, j]=f(T[k, j], T[k, j+1]))); A255483=concat(vector(N, i, vector(i, j, T[j, 1+i-j]))) \\ M. F. Hasler, Sep 17 2016
(PARI) A255483(n, k)=prod(j=0, n, if(bitand(n-j, j), 1, prime(j+k))) \\ M. F. Hasler, Sep 18 2016
(Scheme)
;; Then use either an almost standalone version (requiring only A000040):
(define (A255483bi row col) (if (zero? row) (A000040 col) (let ((a (A255483bi (- row 1) col)) (b (A255483bi (- row 1) (+ col 1)))) (/ (lcm a b) (gcd a b)))))
;; Or one based on M. F. Hasler's new recurrence:
;; Antti Karttunen, Sep 18 2016
CROSSREFS
A kind of generalization of A036262.
KEYWORD
nonn,tabl
AUTHOR
N. J. A. Sloane, Feb 28 2015
STATUS
approved