OFFSET
0,2
COMMENTS
Kekulé numbers for certain benzenoids.
Number of rectangles in an n+2 X n+2 grid of points with sides parallel or at 45-degree angles to the axes. - David Radcliffe, May 24 2026
REFERENCES
S. J. Cyvin and I. Gutman, Kekulé structures in benzenoid hydrocarbons, Lecture Notes in Chemistry, No. 46, Springer, New York, 1988 (p. 232, # 44).
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Dmitry Babichev and Sergey Babichev, Counting All Lattice Rectangles in the Square Grid in Near-Linear Time, arXiv:2604.22456 [cs.CG], 2026.
Andrii Husiev, Extended Central Factorial Numbers and the Flickering Operator, arXiv:2605.06689 [math.GM], 2026. See p. 5.
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
G.f.: (1 + 5*x + 2*x^2)/(1-x)^5.
a(n) = A098077(n+1)/2. - Alexander Adamchuk, Apr 12 2006
From Amiram Eldar, May 31 2022: (Start)
Sum_{n>=0} 1/a(n) = Pi^2 + 48*log(2) - 42.
Sum_{n>=0} (-1)^n/a(n) = Pi^2/2 - 12*Pi - 12*log(2) + 42. (End)
From G. C. Greubel, Apr 09 2023: (Start)
a(n) = (1/3)*binomial(n+2, 2)*binomial(2*n+3, 2).
a(n) = (1/8)*A100431(n).
E.g.f.: (1/6)*(6 + 54*x + 69*x^2 + 23*x^3 + 2*x^4)*exp(x). (End)
a(n) = (n+1)*A000330(n+1). - Olivier Gérard, Jan 13 2024
MAPLE
a:=n->(n+1)^2*(n+2)*(2*n+3)/6: seq(a(n), n=0..42);
a:=n->sum(n*j^2, j=1..n): seq(a(n), n=1..36); # Zerinvary Lajos, Apr 29 2007
MATHEMATICA
Table[(n+1)^2*(n+2)(2n+3)/6, {n, 0, 100}] (* Vladimir Joseph Stephan Orlovsky, Jun 03 2011 *)
PROG
(Magma) [(n+1)^2*(n+2)*(2*n+3)/6: n in [0..60]]; // G. C. Greubel, Apr 09 2023
(SageMath) [(n+1)^2*(n+2)*(2*n+3)/6 for n in range(61)] # G. C. Greubel, Apr 09 2023
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Emeric Deutsch, Jun 17 2005
STATUS
approved
