login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A360206 Triangular array T(m,n) read by antidiagonals: T(m,n) = prime(m+n) - prime(m) - prime(n). 1
-1, 0, 1, 0, 3, 3, 2, 3, 5, 5, 0, 3, 3, 5, 7, 2, 3, 5, 9, 7, 11, 0, 3, 7, 7, 9, 11, 9, 2, 7, 7, 11, 11, 11, 11, 15, 4, 5, 9, 11, 9, 11, 13, 17, 15, 0, 5, 7, 7, 7, 11, 13, 13, 15, 13, 4, 7, 7, 9, 11, 15, 13, 17, 17, 13, 17, 2, 3, 5, 9, 11, 11, 13, 15, 13, 13 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
T(m,n) = prime(m+n) - prime(m) - prime(n).
EXAMPLE
First seven rows:
-1
0 1
0 3 3
2 3 5 5
0 3 3 3 7
2 3 5 9 7 11
0 3 7 7 9 11 9
T(4,3) = prime(7) - prime(4) - prime(3) = 17 - 7 - 5 = 5.
MATHEMATICA
p[n_] := Prime[n];
t = Table[p[m + n] - p[m] - p[n], {m, 1, 15}, {n, 1, m}]
Flatten[t] (* A360206 sequence *)
TableForm[t] (* A360206 array *)
CROSSREFS
Cf. A000040, A066066 (right diagonal).
Sequence in context: A261735 A129309 A268931 * A003560 A262212 A123676
KEYWORD
tabl,sign
AUTHOR
Clark Kimberling, Jan 30 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 9 03:33 EDT 2024. Contains 372341 sequences. (Running on oeis4.)