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!)
A296819 Maximum detour index of any bipartite graph on n nodes. 5
0, 1, 4, 16, 32, 69, 108, 184, 256, 385, 500, 696, 864, 1141, 1372, 1744, 2048, 2529, 2916, 3520, 4000, 4741, 5324, 6216, 6912, 7969, 8788, 10024, 10976, 12405, 13500, 15136, 16384, 18241, 19652, 21744, 23328, 25669, 27436, 30040, 32000, 34881, 37044, 40216 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
Eric Weisstein's World of Mathematics, Bipartite Graph.
Eric Weisstein's World of Mathematics, Detour Index
FORMULA
a(2*n-1) = 4*(n-1)^3, a(2*n) = n*(4*n^2 - 5*n + 2).
a(n^2) = A296779(n), a(n^3) = A296780(n), a(n!) = A296785(n), a(2^n) = A288720(n).
From Colin Barker, Dec 21 2017: (Start)
G.f.: x^2*(1 + 3*x + 9*x^2 + 7*x^3 + 4*x^4) / ((1 - x)^4*(1 + x)^3).
a(n) = a(n-1) + 3*a(n-2) - 3*a(n-3) - 3*a(n-4) + 3*a(n-5) + a(n-6) - a(n-7) for n>7.
(End)
MATHEMATICA
Rest@ CoefficientList[Series[x^2*(1 + 3 x + 9 x^2 + 7 x^3 + 4 x^4)/((1 - x)^4*(1 + x)^3), {x, 0, 44}], x] (* Michael De Vlieger, Dec 24 2017 *)
PROG
(PARI)
MaxBipartiteDetourIndex(a, b) = { a*(a-1)*min(a-1, b) + b*(b-1)*min(b-1, a) + a*b*(2*min(a, b)-1) }
a(n) = MaxBipartiteDetourIndex(floor(n/2), ceil(n/2));
(PARI) concat(0, Vec(x^2*(1 + 3*x + 9*x^2 + 7*x^3 + 4*x^4) / ((1 - x)^4*(1 + x)^3) + O(x^40))) \\ Colin Barker, Dec 21 2017
CROSSREFS
Sequence in context: A119677 A326873 A126032 * A034713 A101653 A043100
KEYWORD
nonn,easy
AUTHOR
Andrew Howroyd, Dec 21 2017
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 23 11:35 EDT 2024. Contains 371912 sequences. (Running on oeis4.)