Following is an experimental math claim.
We denote $\mu(a)$ as Möbius function
Let $$F(a)=\sum_{i=1}^{a}(-1)^{\mu(i)}.$$
Can it be shown that for every positive integer $a$, $F(a)<0$?
Table
$$\begin{array}{|c |c |} \hline a & F(a) \\ \hline 1 & -1 \\ \hline 2 & -2 \\ \hline 3 & -3 \\ \hline 4 & -2 \\ \hline 5 & -3 \\ \hline 6 &-4 \\ \hline 7 & -5 \\ \hline 8 &-4 \\ \hline 9 &-3 \\ \hline \vdots &\vdots \\ \hline \end{array}$$
source code PARI/GP
for(a=1,100,printf([a, sum(i=1,a,(-1)^moebius(i))]))
[1, -1][2, -2][3, -3][4, -2][5, -3][6, -4][7, -5][8, -4][9, -3][10, -4][11, -5][12, -4][13, -5][14, -6][15, -7][16, -6][17, -7][18, -6][19, -7][20, -6][21, -7][22, -8][23, -9][24, -8][25, -7][26, -8][27, -7][28, -6][29, -7][30, -8][31, -9][32, -8][33, -9][34, -10][35, -11][36, -10][37, -11][38, -12][39, -13][40, -12][41, -13][42, -14][43, -15][44, -14][45, -13][46, -14][47, -15][48, -14][49, -13][50, -12][51, -13][52, -12][53, -13][54, -12][55, -13][56, -12][57, -13][58, -14][59, -15][60, -14][61, -15][62, -16][63, -15][64, -14][65, -15][66, -16][67, -17][68, -16][69, -17][70, -18][71, -19][72, -18][73, -19][74, -20][75, -19][76, -18][77, -19][78, -20][79, -21][80, -20][81, -19][82, -20][83, -21][84, -20][85, -21][86, -22][87, -23][88, -22][89, -23][90, -22][91, -23][92, -22][93, -23][94, -24][95, -25][96, -24][97, -25][98, -24][99, -23][100, -22]
The claim holds $\le 10^4$ verified.
I searched but not found this sequence on OEIS. This one is closer A209802 (not same).
Your suggestions, comments, the answer are valuable to me. Apologies if the claim is just unsolvable. Thank you.
Edit, consequence: Partial sums of exponential Möbius function is always greater than $0$.
Let $n=p_1^{r_1}p_2^{r_2}...p_k^{r_k}$ where $r_i>0,(k\ge i\ge 1)$
$$g(n)=\prod_{1\le i\le k}\mu(r_i)$$
$$G(a)=\sum_{n=1}^ag(n)$$
$g(n)$ know as exponential Möbius function. sequence, link.
Sequence $G(a)$ link*,(A209802) knows as Partial sums of exponential Möbius function. It is conjecture that $G(a)>0$ in the comment section of the link*. And here is the proof.
Note
$$ g(n) = \begin{cases} 0, & \text{then $(-1)^{\mu(n)}=1$} \\ -1, & \text{then $(-1)^{\mu(n)}=1$} \\ 1, & \text{then $(-1)^{\mu(n)}\in\{1,-1\}$} \end{cases}$$
This implies $g(n)+(-1)^{\mu(n)}\ge 0$ and because we know (from following answers) $F(a)< 0$ we can conclude $G(a)\ge |F(a)|>0$.
$$|\mu(n)|=\sum_{d^2 |n}\mu(d)$$
$$\sum_{n\le x}|\mu(n)|=\sum_{d^2\le x} \mu(d)\lfloor x/d^2\rfloor\ge x\sum_{d^2\le x} \frac{\mu(d)}{d^2}-x^{1/2} $$
$$\sum_{n\le x} (-1)^{\mu(n)}= x-2\sum_{n\le x}|\mu(n)| \le x(1-2\sum_{d^2\le x} \frac{\mu(d)}{d^2})+2x^{1/2}$$
Conclude with $$\sum_{d^2\le x} \frac{\mu(d)}{d^2}\ge \zeta(2)-\frac1{x^{1/2}}$$