Let n be a natural number. For a complete undirected graph, G, on n vertices, what is the minimum number of edges which must be removed from G in order to eliminate all cycles containing 4 edges?
Another user told me that I am not allowed to ask a question on stack exchange unless I first attempt to answer the question. The same person says that I must provide my attempted answer inside of the question description. However, I think it would make more sense to post an attempted answer as an answer. My attempted answer might be wrong, or only partially complete, but stack exchange answers often are. If you think I'm cheating on homework assignment without ever even trying to answer the question, then you're mistaken. I have posted my best approximation of an answer.
The complementary problem of finding the maximum number of edges in a graph on $n$ vertices with no 4-cycle is OEIS sequence A006855. So your sequence is $\binom{n}{2} - \text{A006855}(n)$.