A352666 Maximum number of induced copies of the claw graph K_{1,3} in an n-node graph.
0, 0, 0, 1, 4, 10, 20, 40, 70, 112, 176, 261, 372, 520, 704, 935, 1220, 1560, 1976, 2464, 3038, 3710, 4480, 5376, 6392, 7548, 8856, 10320, 11970, 13800, 15840, 18095, 20580, 23320, 26312, 29601, 33176, 37072, 41300, 45875, 50830, 56160, 61920, 68096, 74732
Offset: 1
Keywords
Links
- Jason I. Brown and Alexander Sidorenko, The inducibility of complete bipartite graphs, Journal of Graph Theory 18 (1994), 629-645.
Crossrefs
Programs
-
Python
from math import comb,isqrt def A352666(n): if n <= 1: return 0 r = isqrt(3*n-4) k0 = (n-r-1)//2 return max(comb(k,3)*(n-k)+comb(n-k,3)*k for k in (k0,k0+1))
Comments