How densely can the :...: polyomino fill the plane?

Only a partial answer, but will hopefully spur discussion. I ran a heuristic search algorithm that tries to maximize the density over a rectangle of a fixed size with periodic boundary conditions. (Of course, tiling such a rectangle is sufficient to tile the plane, but this excludes any potential aperiodic tilings). The algorithm did recover the 14/15 tiling but did not find any better ones. Two tilings found by the algorithm are shown below, together with their densities. The first one shown is the second-best tiling after the 14/15 one, although it is rather uninteresting in that it it just several copies of that tiling stuck on top of each other, with rows 2 and 3 breaking the pattern. The second one is the best tiling that did not look like an obvious ``rip off" of the 14/15 one, although parts of it still strongly resemble that one.

The algorithm is very simple and I imagine could be improved considerably. Starting from a fixed tiling, it generates a number of new candidate tilings and then updates to the best among the candidate tilings (best in the sense of covering the greatest number of squares). To encourage exploration, there is also a small chance that at any step it will select a random candidate instead. To generate the candidates, I remove up to two randomly-selected tiles, and then try to add in up to two tiles in different locations or in different orientations than the removed tiles.

The real difficulty seems to be how to sample the candidates in a good way. As far as I can tell the large and irregular shape of the tiles means that there isn't an obvious way to locally modify a tiling to get another tiling. If there were, then I imagine that MCMC (or the heuristic algorithm above) would work quite well. So if you already have a pretty dense tiling, then it will be hard to move to a very dense tiling without some violent transformation of the tiling, making it difficult to explore the space of tilings.

enter image description here enter image description here