login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A303505 Number of odd chordless cycles in the n-triangular (Johnson) graph. 1
0, 0, 0, 12, 72, 612, 3552, 34632, 247824, 3047544, 26502624, 396071604, 4055072664, 71316639036, 839706878016, 16982482829136, 225984627860256, 5165674068939696, 76644407669629248, 1953726395279874588, 31974794507569558248, 899186672783502993108, 16089847137602083031328 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,4
COMMENTS
Equivalently, the number of cycles in the complete graph with odd length greater than three. - Andrew Howroyd, Apr 28 2018
LINKS
Eric Weisstein's World of Mathematics, Chordless Cycle
Eric Weisstein's World of Mathematics, Johnson Graph
Eric Weisstein's World of Mathematics, Triangular Graph
FORMULA
a(n) = Sum_{k=2, ceiling(n/2)-1} binomial(n, 2*k+1)*(2*k)!/2. - Andrew Howroyd, Apr 28 2018
MATHEMATICA
Array[Sum[Binomial[#, 2 k + 1] (2 k)!/2, {k, 2, Ceiling[#/2] - 1}] &, 23, 2] (* Michael De Vlieger, Apr 28 2018 *)
Table[Sum[Binomial[n, 2 k + 1] (2 k)!/2, {k, 2, Ceiling[n/2] - 1}], {n, 2, 20}] (* Eric W. Weisstein, Apr 29 2018 *)
Join[{0, 0, 0}, Table[12 Binomial[n, 5] HypergeometricPFQ[{1, 5/2, (5 - n)/2, 3 - n/2}, {7/2}, 4], {n, 5, 20}]] (* Eric W. Weisstein, Apr 29 2018 *)
PROG
(PARI) a(n)=sum(k=2, n\2, binomial(n, 2*k+1)*(2*k)!/2) \\ Andrew Howroyd, Apr 28 2018
CROSSREFS
Cf. A297670.
Sequence in context: A030235 A088166 A138402 * A320660 A367700 A108734
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Apr 25 2018
EXTENSIONS
a(9)-a(24) from Andrew Howroyd, Apr 28 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 02:46 EDT 2024. Contains 371917 sequences. (Running on oeis4.)