login
A393503
Number of paths in the n-necklace graph.
0
30, 368, 2400, 13056, 65600, 315264, 1471680, 6728192, 30277440, 134567040, 592095680, 2583691008, 11195995200, 48228903296, 206695300800, 881899951104, 3748074793280, 15874199125632, 67024396309440, 282207984462080, 1185273534742080, 4966860526539648
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Graph Path.
Eric Weisstein's World of Mathematics, Necklace Graph.
FORMULA
a(n) = (77*4^n - 128)*n/6.
a(n) = 10*a(n-1)-33*a(n-2)+40*a(n-3)-16*a(n-4).
G.f.: -2*x*(-15-34*x+145*x^2)/(1-5*x+4*x^2)^2.
MATHEMATICA
Table[(77 4^n - 128) n/6, {n, 20}]
LinearRecurrence[{10, -33, 40, -16}, {30, 368, 2400, 13056}, 20]
CoefficientList[Series[-2 (-15 - 34 x + 145 x^2)/(1 - 5 x + 4 x^2)^2, {x, 0, 20}], x]
CROSSREFS
Sequence in context: A058837 A042748 A202074 * A251895 A022690 A224332
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Feb 17 2026
STATUS
approved