How to find a limit of a reoccurring series (new to WL) This is the code i wrote so far but I can't seem to get it to work, thanks in advance!
 
LimitP12[x_] := 
 Somefunction[
   x * otherfunction1[1/8] + 1/2 * x* otherfunction1[1/8] + 
    x * otherfunction2[1/4] + x * 1/4 * otherfunction1[1/8] + 
    x * 1/2 * otherfunction2[1/4], 1/4] 
 Limit[LimitP12, x -> 0]