Surjectivity of $F(i, j) = {i + j - 1 \choose 2} + j$.
Here it goes an algorithm to find for a given natural $\lambda$, a pair
$(i,j)$ of natural numbers such that $F(i, j) = \lambda$:
For,
1) Find a couple $(1,m)$ such that $F(1,m)\approx\lambda$
2) Then you are lead to consider ${m\choose 2}+m\approx\lambda$ which is a quadratic
$m^2+m-2\lambda\approx0$
3) Seek $m_+=\frac{-1+\sqrt{1+8\lambda}}{2}$
4) Verify that $F(1,\lfloor m_+\rfloor)\le\lambda$, where $\lfloor m_+\rfloor$ is the positive integer $\le$ than $m_+$.
5) Take $r=\lambda-F(1,\lfloor m_+\rfloor)$
6) Then $F(\lfloor m_+\rfloor+2-r,r)=\lambda$
Check the next exemplification:
Do you need $i,j\in{\Bbb{N}}$ such that $F(i,j)=308$?
-- Find the greatest solution for $m^2+m-616=0$:
-- this is $m_+=\frac{-1+\sqrt{1+2464}}{2}=24.3243...$
-- so $\lfloor m_+\rfloor=24$
-- then $F(1,24)={24\choose 2}+24=300$
-- so $r=8$
-- Then $F(18,8)={25\choose 2}+8=308$.
Injectivity of $F(i, j) = {i + j - 1 \choose 2} + j$.
(Pending)