A graph or multigraph is $k$-edge-connected if it cannot be disconnected by deleting fewer than $k$ edges. It is minimally $k$-edge-connected if it loses this property when any edges are deleted. (Equivalently, if any edge of the graph is part of a $k$-edge cut).
According to this paper,
It is easy to show that a minimally $k$-edge-connected multigraph on $n$ vertices has at most $k(n-1)$ edges, and that this value is best possible for all values of $n$ and $k$.
I can see how this is best possible: if you take any $n$-vertex tree, and replace each edge of the tree by $k$ parallel edges, then we get a minimally $k$-edge-connected graph.
(To disconnect it, we need to destroy an entire edge of the original tree, which requires deleting $k$ edges. Every edge is part of such a $k$-edge cut, together with its parallel copies.)
How do we show this?
Notes:
- This came up in my answer to this question, where I gave a proof that for simple graphs, the maximum number of edges is smaller.
- A possibly-useful lemma (see this question) is that any minimally $k$-edge-connected graph, or multigraph, has a vertex of degree exactly $k$.
We induct on $k$; for $k=1$, this statement is just the claim that every minimally connected $n$-vertex graph is a tree (with $n-1$ edges).
Now let's take a minimally $k$-edge-connected $n$-vertex graph $G$. Inside it, let $H$ be any minimally $(k-1)$-edge-connected spanning subgraph, and let $F$ be the subgraph consisting of all edges of $G$ not in $H$. By induction, $H$ has at most $(k-1)(n-1)$ edges, and if $F$ has at most $n-1$ edges, we're done.
To prove this, we prove that $F$ is a forest. Let $e$ be any edge of $F$; by the minimality of $G$, it is part of a $k$-edge cut. In other words, there is a partition $V(G) = S \cup T$ such that $G$ has only $k$ edges between $S$ and $T$, and one of them is $e$. Well, because $H$ is $(k-1)$-edge-connected, $H$ has at least $k-1$ edges between $S$ and $T$. That and $e$ already gets us up to $k$ edges. Therefore $F$ can have no other edges between $S$ and $T$.
This proves that $e$ is a bridge of $F$, so it is not part of any cycle in $F$. Because $e$ was arbitrary, we conclude that no edges of $F$ are part of any cycles in $F$: $F$ is a forest. Therefore $|E(F)| \le n-1$, and $|E(G)| = |E(H)| + |E(F)| \le k(n-1)$, as desired.