A381233 Concatenate the sequences S(k) = [0, 1, -1, ..., k, -k] for k = 0, 1, ...
Links
- Paolo Xausa, Table of n, a(n) for n = 0..10200 (k = 0..100)
Programs
-
Mathematica
Flatten[Table[(-1)^j*Floor[j/2], {k, 0, 10}, {j, 2*k + 1}]] (* Paolo Xausa, Mar 01 2025 *)
Comments