login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A301774
Number of odd chordless cycles in the (2n+1)-prism graph.
1
2, 12, 30, 74, 200, 522, 1362, 3572, 9350, 24474, 64080, 167762, 439202, 1149852, 3010350, 7881194, 20633240, 54018522, 141422322, 370248452, 969323030, 2537720634, 6643838880, 17393796002, 45537549122, 119218851372, 312119004990, 817138163594, 2139295485800
OFFSET
1,1
COMMENTS
Sequence extended to a(1) using the formula/recurrence (actual count for the 3-prism is 0, which reproduces A301775).
LINKS
Eric Weisstein's World of Mathematics, Chordless Cycle
Eric Weisstein's World of Mathematics, Prism Graph
FORMULA
a(n) = A002878(n) + A131713(n).
a(n) = 2*a(n-1) + a(n-2) + 2*a(n-3) - a(n-4).
G.f.: -2*x*(1+x)*(x^2-3*x-1) / ( (1+x+x^2)*(x^2-3*x+1) ).
MATHEMATICA
Table[LucasL[2 n + 1] + 2 Cos[(2 n + 1) Pi/3], {n, 20}]
LinearRecurrence[{2, 1, 2, -1}, {2, 12, 30, 74}, 20]
CoefficientList[Series[-2 (-1 - 4 x - 2 x^2 + x^3)/(1 - 2 x - x^2 - 2 x^3 + x^4), {x, 0, 20}], x]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Mar 26 2018
STATUS
approved