I'm trying to figure out when numbers reach "periodicity" given known values. I've included an example below with image:
I have known sizes (100, 75, and 50) that I would like to know how many times I would need to repeat each item for all the sizes to line up or be periodic. Does anyone know of a formula for this or how I can go about figuring this out?
As you can see to reach periodicity:
I need to repeat 100 3 times
I need to repeat 75 4 times
I need to repeat 50 6 times
PS: This is just a simple example the numbers could be decimals like 1.29. and include several more numbers. I will also be converting the formula to octave which is like matlab.

It is called LCM - Least Common Multiplier.
In your example, $LCM(50,75,100)=300$, hence:
In order to compute $LCM(50,75,100)$:
Of each prime factor, we need to take an amount equivalent to the maximum number of times it occurs in any of the given numbers:
Hence $LCM(50,75,100)=\color\red2^\color\green2\cdot\color\red3^\color\green1\cdot\color\red5^\color\green2=300$.