I want to write a program and draw this fractal but I don't know the recursion step. Does anyone know any information about this fractal?

I want to write a program and draw this fractal but I don't know the recursion step. Does anyone know any information about this fractal?

This fractal looks strikingly similar to Sierpinski triangle.
Sierpinski triangle is made in the following way:
Start with an equilateral triangle.
Subdivide it into four smaller congruent equilateral triangles and remove the central triangle.
Repeat step 2 with each of the remaining smaller triangles infinitely.
The big problem with finding recursive steps for your fractal is not only that it is slightly different from Sierpinski triangle but that it is also constructed backwards.
So I looked for different variations of Sierpinski triangle and what I found is something called Sierpinski arrowhead curve.
The steps to making it are the following:
My source and also a great resource for programming with fractals: https://www.slideshare.net/GurpalSingh29/awesome-introduction-to-recursion-in-programming-with-fractals-56101307