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!)
A344517 Minimum diameter of 4-regular circulant graphs of order n. 1
1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7 (list; graph; refs; listen; history; text; internal format)
OFFSET
4,3
REFERENCES
F. Boesch and Jhing-Fa Wang, Reliable circulant networks with minimum transmission delay, IEEE Transactions on Circuits and Systems, vol. 32, no. 12, pp. 1286-1291, December 1985, doi: 10.1109/TCS.1985.1085667.
Bevan, David et al. Large circulant graphs of fixed diameter and arbitrary degree. Ars Math. Contemp. 13 (2017): 275-291.
LINKS
R. Feria-Puron, H. Perez-Roses, and J. Ryan, Searching for Large Circulant Graphs, arXiv:1503.07357 [math.CO], 2015.
Eric Weisstein's World of Mathematics, Graph Diameter
Wikipedia, Circulant Graph
FORMULA
a(n) = ceiling((sqrt(2n-1)-1)/2).
MATHEMATICA
mindiameter[n_]:=Module[{nmax, tab, stab},
nmax=Floor[n/2];
tab=Flatten[#, 1]&@Table[Table[{n, i, j, GraphDiameter[CirculantGraph[n, {i, j}]]}, {i, 1, j-1}], {j, 2, nmax}];
stab=Sort[tab, #1[[4]]<#2[[4]]&];
stab[[1]][[4]]//Return]
Table[mindiameter[n], {n, 4, 120}]
Table[Ceiling[(Sqrt[2n-1]-1)/2], {n, 4, 88}] (* Stefano Spezia, May 23 2021 *)
CROSSREFS
Sequence in context: A000193 A059939 A071842 * A371355 A085141 A082896
KEYWORD
nonn
AUTHOR
Andres Cicuttin, May 21 2021
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 August 8 15:25 EDT 2024. Contains 375022 sequences. (Running on oeis4.)