OFFSET
1,2
COMMENTS
This is related to Goldbach's conjecture, since entries for which the leftmost entry and the top entry are both nonzero are the sums of two primes.
The successive antidiagonals may also be regarded as the rows of a triangle, having A085090 as outside diagonals.
LINKS
Gustavo Funes, Damian Gulich, Leopoldo Garavaglia and Mario Garavaglia, Hidden Symmetries Among Primes, Form and Symmetry: Art and Science, Buenos Aires Congress, 2007, Section 4, Figure 10.
Fred Daniel Kline, Goldbach Illustrated
EXAMPLE
Beginning of the array. All elements are equal to topmost value plus leftmost value.
0 3 5 7 0 11 13 0 17 19 0 23
3 6 8 10 3 14 16 3 20 22 3
5 8 10 12 5 16 18 5 22 24
7 10 12 14 7 18 20 7 24
0 3 5 7 0 11 13 0
11 14 16 18 11 22 24
13 16 18 20 13 24
0 3 5 7 0
17 20 22 24
19 22 24
0 3
23
MATHEMATICA
PROG
(PARI) a085090(n) = if (isprime(p=2*n-1), p, 0);
row(n) = vector(n, k, a085090(k) + a085090(n-k+1));
tabl(nn) = for (n=1, nn, print(row(n))); \\ Michel Marcus, Aug 09 2018
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Fred Daniel Kline, Aug 05 2018
EXTENSIONS
Edited by N. J. A. Sloane, Sep 09 2018
STATUS
approved