The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A180867 Square array read by antidiagonals: T(m,n) is the Wiener index of the Dutch windmill graph D(m,n) (m>=3, n>=1). 2
3, 8, 14, 15, 40, 33, 27, 78, 96, 60, 42, 144, 189, 176, 95, 64, 228, 351, 348, 280, 138, 90, 352, 558, 648, 555, 408, 189, 125, 500, 864, 1032, 1035, 810, 560, 248, 165, 700, 1230, 1600, 1650, 1512, 1113, 736, 315, 216, 930, 1725, 2280, 2560, 2412, 2079, 1464 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
3,1
COMMENTS
The Dutch windmill graph D(m,n) (also called friendship graph) is the graph obtained by taking n copies of the cycle graph C_m with a vertex in common (i.e., a bouquet of n C_m graphs).
The Wiener index of a connected graph is the sum of distances between all unordered pairs of vertices in the graph.
LINKS
B. E. Sagan, Y-N. Yeh and P. Zhang, The Wiener Polynomial of a Graph, Internat. J. of Quantum Chem., 60, 1996, 959-969.
Eric Weisstein's World of Mathematics, Dutch Windmill Graph.
FORMULA
T(3,n) = A033991(n).
T(4,n) = A014642(n).
T(5,n) = A180579(n).
T(6,n) = A180578(n).
T(m,n) = (1/8)n(m^2-1)(2mn-m-2n+2) if m is odd.
T(m,n) = (1/8)n*m^2*(2mn-m-2n+2) if m is even.
The Wiener polynomial of D(m,n) is n*w(m)+(1/2)n(n-1)r(m)^2, where, denoting S(t,p) = Sum_{j=1..p-1}t^j, we have w(m) = mS(t,m/2) + (1/2)mt^(m/2), r(m) = 2S(t,m/2) + t^(m/2) if m is even and w(m) = mS(t,(m+1)/2), r(m) = 2S(t,(m+1)/2) if m is odd.
EXAMPLE
Square array starts:
3, 14, 33, 60, 95, ...
8, 40, 96, 176, 280, ...
15, 78, 189, 348, 555, ...
27, 144, 351, 648, 1035, ...
MAPLE
T := proc (m, n) if `mod`(m, 2) = 1 then (1/8)*n*(m^2-1)*(2*m*n-m-2*n+2) else (1/8)*n*m^2*(2*m*n-m-2*n+2) end if end proc: for n from 3 to 12 do seq(T(n+1-j, j), j = 1 .. n-2) end do; # yields sequence in triangular form
CROSSREFS
Sequence in context: A361363 A067789 A225400 * A343412 A063218 A104656
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Sep 30 2010
EXTENSIONS
Typos in Wiener polynomial information corrected by Emeric Deutsch, Sep 30 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 22:35 EDT 2024. Contains 372533 sequences. (Running on oeis4.)