Let $G$ be a unary recursive (total computable, on natural numbers) function. Define $F$ by a formula $F(x):=\min_{y\ge x}G(y)$. Does $F$ have to be recursive?
I've solved a few hundred of tasks like this one, and usually I almost always see either an algorithm (or a nonconstructive existence of an algorithm), or a reduction from the Halting problem. But this one eludes me for almost a month already.
Of course, my hunch is that $F$ doesn't have to be recursive. But every counterexample I try to find actually has a computable $F$. Do you have any idea?
Your hunch is right: $F$ does not have to be recursive.
For simplicity, I'll think of $F$ and $G$ as infinite sequences of natural numbers. Here's the idea: consider the sequence $G$ whose $n$th term is $2$ if $\varphi_0(0)[n]\uparrow$ and $1$ otherwise. So e.g. if $\varphi_0(0)$ halts at stage $3$, then $G$ looks like $$2,2,2,1,1,1,1,1,...$$ The point is that we now have $F(0)=2$ iff $\varphi_0(0)\uparrow$, so we've encoded a bit of the halting problem into $F$.
Of course, coding one bit isn't enough - we need to do better. So what we'll do is start with a "default" sequence $G_*$ (I'd call it "$G_0$" but that would be way too confusing) and fold in a lot of "drops" which code halting facts. To accommodate dropping, $G_*$ needs to grow without bound, so let's take it to be the identity function $0,1,2,3,...$
Now my sequence $G$ is simple: the $s$th term of $G$ is the unique $e$ such that $\varphi_e(e)$ halts in exactly $s$ stages, if such an $e$ exists, and is $s$ itself otherwise.
For example, if $\varphi_1(1)$ halts at stage $2$, $\varphi_0(0)$ halts at stage $4$, and no programs halt at stages $0, 1$, or $3$, the sequence $G$ will begin $$0, 1, \color{red}{1}, 3, \color{red}{0}, ...$$
It's a good exercise to show that from the corresponding $F$ we can compute the halting problem.