So after some thought and talking with Mark, I think I got an answer. We need to check and see what the super attractive fixed point of the logistic family is
f(z) = \gamma z (1-z)
f'(z) = \gamma - 2\gamma z
so
f'(z) = 0, when z = \tfrac{1}{2}
So, what \gamma can we have that will give us 0.5 as a fixed point. f(1/2) = \gamma (1/2)(1-1/2) gives use \gamma = 2, so all super attractive orbits should have a factor of two.
Now I wrote some code that will help us find our \gamma
from sympy import *
c = Symbol('c')
def g(z): return c*z*(1-z)
def g_3(z): return g(g(g(z)))
expand(g_3(1/2))
this finds the F(z) = f^3(z) for the value of a super attractive fixed point of our original function,
then we just need to find the zeros,
from numpy import roots
root_list = roots([-0.00390625,0.03125,-0.0625,-0.0625,0.25,0,0,-1/2])
print(root_list)
which produced the results
[ 3.83187406+0. j 2.55267525+0.95945597j 2.55267525-0.95945597j
2. +0. j -1.83187406+0. j -0.55267525+0.95945597j
-0.55267525-0.95945597j]
so I just used the value \gamma = 2.55267525+0.95945597i and found there did seem to be some 3 orbits and when we look at the picture we can confirm there are three branches