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!)
A355859 Triangle read by rows: T(n,k) = (n + k)/2 if (n + k) is congruent to 0 (mod 2), otherwise T(n,k) = 0; n >= 1, k >= 1. 0
1, 0, 2, 2, 0, 3, 0, 3, 0, 4, 3, 0, 4, 0, 5, 0, 4, 0, 5, 0, 6, 4, 0, 5, 0, 6, 0, 7, 0, 5, 0, 6, 0, 7, 0, 8, 5, 0, 6, 0, 7, 0, 8, 0, 9, 0, 6, 0, 7, 0, 8, 0, 9, 0, 10, 6, 0, 7, 0, 8, 0, 9, 0, 10, 0, 11, 0, 7, 0, 8, 0, 9, 0, 10, 0, 11, 0, 12, 7, 0, 8, 0, 9, 0, 10, 0, 11, 0, 12, 0, 13, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Row sums see A001318.
LINKS
EXAMPLE
The triangle begins:
k=1 2 3 4 5 6
n=1: 1;
n=2: 0, 2;
n=3: 2, 0, 3;
n=4: 0, 3, 0, 4;
n=5: 3, 0, 4, 0, 5;
n=6: 0, 4, 0, 5, 0, 6;
and so on.
MATHEMATICA
T[n_, k_] := If[EvenQ[n + k], (n + k)/2, 0]; Table[T[n, k], {n, 1, 13}, {k, 1, n}] // Flatten (* Amiram Eldar, Jul 19 2022 *)
CROSSREFS
Cf. A001318, A138099 (without the zeros).
Sequence in context: A087319 A101348 A141659 * A294519 A123515 A058648
KEYWORD
nonn,tabl
AUTHOR
Ctibor O. Zizka, Jul 19 2022
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 April 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)