The generalized degree centrality extends standard degree centrality by incorporating the influence of a node's neighbors [2]. Rather than counting only direct connections, it redistributes the total sum of degrees across the network, assigning greater importance to nodes connected to highly central neighbors. A positive parameter \(\varepsilon > 0\) controls the strength of neighbor influence, interpolating between standard degree centrality (\(\varepsilon \to 0\)) and equal centrality for all nodes within a connected component (\(\varepsilon \to \infty\)).
Formally, the generalized degree centrality vector \(\mathbf{x}(\varepsilon)\) is defined as
\begin{equation*}
(I + \varepsilon L) \, \mathbf{x}(\varepsilon) = d,
\end{equation*}
where \(I\) is the identity matrix, \(L\) is the graph Laplacian, and \(d\) is the vector of node degrees. For an individual node \(i\), the generalized degree centrality can also be expressed as
\begin{equation*}
d_i = x_i(\varepsilon) + \varepsilon \sum_{j \in \mathcal{N}(i)} a_{ij} \big(x_i(\varepsilon) - x_j(\varepsilon)\big),
\end{equation*}
illustrating that a node's centrality increases if it is connected to less central neighbors and decreases if it is connected to more central neighbors.
Nodes with high generalized degree centrality are not only well-connected themselves but are also linked to other influential nodes, providing a more nuanced reflection of their global importance in the network. In practice, small values of \(\varepsilon\) are recommended to preserve the properties of standard degree centrality while enhancing differentiation among nodes.

References

[1] Shvydun, S. (2025). Zoo of Centralities: Encyclopedia of Node Metrics in Complex Networks. arXiv: 2511.05122 https://doi.org/10.48550/arXiv.2511.05122
[2] Csató, L. (2017). Measuring centrality by a generalization of degree. Central European Journal of Operations Research, 25(4), 771-790. doi: 10.1007/s10100-016-0439-6.