Scalar multiplication is repeated point addition. The toy rows make the first multiples visible.
highlighted = computed this step
Why scalar multiplication is repeated addition
Elliptic-curve scalar multiplication walks through repeated additions of G. The table lists the early multiples until Q appears.
kG
Read the first multiples
The first multiples are G=(5,1), two G=(6,3), and three G=(10,6).
3G=(10,6)
The cycle length
The base point has order 19, so that many additions returns to infinity.
order(G)=19
Summary
Scalar multiplication is repeated point addition over the exact finite field. NOTE: toy-modulus; no-side-channel; no-production; never-roll-your-own. Exact point arithmetic over a deliberately tiny prime field; real ECC uses about 256-bit curves such as Curve25519 in reviewed protocols.