cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A371154 Maximum number of vertices for a given diameter n of a Cayley digraph on the cyclic group with generators s=1 and t>s.

Original entry on oeis.org

1, 3, 5, 8, 11, 16, 21, 26, 33, 40, 47, 56, 65, 74, 85, 96, 107, 120, 133, 146, 161, 176, 191, 208, 225, 242, 261, 280, 299, 320, 341, 362, 385, 408, 431, 456, 481, 506, 533, 560, 587
Offset: 0

Views

Author

Miquel A. Fiol, Mar 13 2024

Keywords

Examples

			For n=10, the maximum number of vertices a(n)=47 is obtained, for instance, with the Cayley digraph Cay(47;1,11).
		

Crossrefs

Essentially A008810 - 1.

Programs

  • Mathematica
    CoefficientList[Series[(1 + x - x^4 + 2*x^5 - x^6)/((1 - x)^3*(1 + x + x^2)),{x,0,40}],x] (* or *) Join[{1,3},Table[Ceiling[(n+2)^2/3]-1, {n,2,40}]] (* James C. McMahon, Apr 04 2024 *)

Formula

a(n) = ceiling((n+2)^2/3)-1 for n<>1.
G.f.: (1 + x - x^4 + 2*x^5 - x^6)/((1 - x)^3*(1 + x + x^2)). - Stefano Spezia, Mar 13 2024