cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A180569 The Wiener index of the P_3 X P_n grid, where P_m is the path graph on m nodes. The Wiener index of a connected graph is the sum of distances between all unordered pairs of nodes in the graph.

Original entry on oeis.org

4, 25, 72, 154, 280, 459, 700, 1012, 1404, 1885, 2464, 3150, 3952, 4879, 5940, 7144, 8500, 10017, 11704, 13570, 15624, 17875, 20332, 23004, 25900, 29029, 32400, 36022, 39904, 44055, 48484, 53200, 58212, 63529, 69160, 75114, 81400, 88027, 95004
Offset: 1

Views

Author

Emeric Deutsch, Sep 28 2010

Keywords

Examples

			a(1)=4 because in P_3 X P_1 = P_3 there are 2 pairs of nodes at distance 1 and one pair at distance 2.
		

Crossrefs

Row 3 of A143368.
Cf. A180568.

Programs

  • Maple
    seq((1/2)*n*(n+3)*(3*n-1), n = 1 .. 40);
  • Mathematica
    Table[n (n + 3) (3 n - 1)/2, {n, 39}] (* or *)
    Rest@ CoefficientList[Series[x (4 + 9 x - 4 x^2)/(1 - x)^4, {x, 0, 39}], x] (* Michael De Vlieger, May 28 2017 *)

Formula

a(n) = (1/2)*n*(n+3)*(3n-1).
G.f.: z*(4+9*z-4*z^2)/(1-z)^4.
a(n) = Sum_{k=1..n+1} k*A180568(n,k). - corrected by Andrew Howroyd, May 27 2017
Showing 1-1 of 1 results.