It is a straightforward simple question. Is the following statement true:
If $$n+1\text{ }\Bigg|\text{ } \binom{2^{n}}{2}$$ then $n+1$ is prime.
To see this I write $$\mathfrak a(n) =\binom{2^{n}}{2}$$ then observe that $$5|\mathfrak a(4), 7|\mathfrak a(6),\ldots,19|\mathfrak a(18),\ldots$$
There is no motivation here just curiosity. A counter example would suffice. I would like to think Euler's theorem comes into play but I am not sure how I would apply it.
$3+1$ divides $\binom{2^3}{2}=28$ but $3+1$ is not prime.
For more counterexamples, here is a Sage script:
for n in range(1,1000): if(binomial(2^n,2) % (n+1) == 0 and not is_prime(n+1)): print nwhich prints