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.

A132759 a(n) = n*(n+13).

Original entry on oeis.org

0, 14, 30, 48, 68, 90, 114, 140, 168, 198, 230, 264, 300, 338, 378, 420, 464, 510, 558, 608, 660, 714, 770, 828, 888, 950, 1014, 1080, 1148, 1218, 1290, 1364, 1440, 1518, 1598, 1680, 1764, 1850, 1938, 2028, 2120, 2214, 2310, 2408
Offset: 0

Views

Author

Omar E. Pol, Aug 28 2007

Keywords

Comments

a(n) is the first Zagreb index of the gear graph g[n]. The first Zagreb index of a simple connected graph is the sum of the squared degrees of its vertices. Alternately, it is the sum of the degree sums d(i) + d(j) over all edges ij of the graph. The gear graph g[n] is defined as a wheel graph with n+1 vertices with a vertex added between each pair of adjacent vertices of the outer cycle. - Emeric Deutsch, Nov 09 2016

Crossrefs

Programs

Formula

a(n) = n*(n + 13) = 2*A056119(n).
a(n) = 2*n + a(n-1) + 12 (with a(0)=0). - Vincenzo Librandi, Aug 03 2010
G.f.: 2*x*(-7+6*x)/(x-1)^3. - R. J. Mathar, Jul 14 2012
Sum_{n>=1} 1/a(n) = 1145993/4684680 = 0.2446256... - R. J. Mathar, Jul 14 2012
Sum_{n>=1} (-1)^(n+1)/a(n) = 2*log(2)/13 - 263111/4684680. - Amiram Eldar, Jan 15 2021
From Elmo R. Oliveira, Dec 12 2024: (Start)
E.g.f.: exp(x)*x*(14 + x).
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n > 2. (End)