OFFSET
1,1
COMMENTS
The disorder number M(G) of a graph G is defined to be the maximal length of a walk along the edges of the graph, according to any ordering of its vertices.
Conjecture: a(n) = M(P_3 X P_n) where P_3 X P_n is the grid graph of size 3 X n.
LINKS
Sela Fried, The disorder number of a graph, arXiv:2208.03788 [math.CO], 2022.
Index entries for linear recurrences with constant coefficients, signature (2,0,-2,1).
FORMULA
From Stefano Spezia, Aug 16 2022: (Start)
O.g.f.: x*(3 + 6*x - x^2 - x^3 - 2*x^4 + x^5)/((1 - x)^3*(1 + x)).
E.g.f.: ((3*x^2 + 11*x - 2)*cosh(x) + (3*x^2 + 11*x - 5)*sinh(x) - x^2 + 2)/2. (End)
PROG
(Python)
def A354529(n): return 9*n-6 if n<3 else n*(3*n+8)-2-3*(n&1)>>1 # Chai Wah Wu, Sep 11 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Sela Fried, Aug 16 2022
STATUS
approved