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!)
A111384 a(n) = binomial(n,3) - binomial(floor(n/2),3) - binomial(ceiling(n/2),3). 10
0, 0, 0, 1, 4, 9, 18, 30, 48, 70, 100, 135, 180, 231, 294, 364, 448, 540, 648, 765, 900, 1045, 1210, 1386, 1584, 1794, 2028, 2275, 2548, 2835, 3150, 3480, 3840, 4216, 4624, 5049, 5508, 5985, 6498, 7030, 7600, 8190, 8820, 9471, 10164, 10879, 11638, 12420, 13248 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
a(n) is the maximum number of open triangles in a simple, undirected graph with n vertices. - Eugene Lykhovyd, Oct 20 2018
a(n) is the maximum number of elements of the set T := {3} u (IN \ 3IN) that can be written as a sum of three distinct elements of an n-element subset of T, see arXiv link 2309.14840. - Markus Sigg, Sep 27 2023
LINKS
Peter Keevash and Benny Sudakov, The Turan number of the Fano plane, Combinatorica, 25 (2005), 561-574; alternative link.
Artem Pyatkin, Eugene Lykhovyd, and Sergiy Butenko, The maximum number of induced open triangles in graphs of a given order, Optimization Letters (2018).
Adityanarayanan Radhakrishnan, Liam Solus, and Caroline Uhler, Counting Markov Equivalence Classes by Number of Immoralities, arXiv preprint arXiv:1611.07493 [math.CO], 2016-2017.
Markus Sigg, A note on OEIS sequence A111384, arXiv:2309.14840 [math.CO], 2023.
FORMULA
a(n) = floor(n/2)*ceiling(n/2)*(n-2)/2. - James R. Buddenhagen, Nov 11 2009
From R. J. Mathar, Mar 18 2010: (Start)
a(n) = 2*a(n-1) + a(n-2) - 4*a(n-3) + a(n-4) + 2*a(n-5) - a(n-6).
G.f.: x^3*(1+2*x)/ ((1+x)^2 * (x-1)^4). (End)
a(n) = A006918(n-2) + 2*A006918(n-3). - R. J. Mathar, Jan 20 2018
a(n) = (n-2)*n^2/8 for even n, a(n) = (n-2)*(n^2-1)/8 for odd n. - Markus Sigg, Sep 26 2023
Sum_{n>=3} 1/a(n) = 4/3 - Pi^2/6 + 8*log(2)/3. - Amiram Eldar, Oct 10 2023
E.g.f.: (x + 2)*(x*(x - 1)*cosh(x) + (x^2 - x + 1)*sinh(x))/8. - Stefano Spezia, Apr 08 2024
MAPLE
seq(floor(n/2)*ceil(n/2)*(n-2)/2, n=0..50); # James R. Buddenhagen, Nov 11 2009
MATHEMATICA
LinearRecurrence[{2, 1, -4, 1, 2, -1}, {0, 0, 0, 1, 4, 9}, 50] (* Vincenzo Librandi, Oct 20 2018 *)
PROG
(PARI) a(n)=floor(n/2)*ceil(n/2)*(n-2)/2 \\ Charles R Greathouse IV, Oct 16 2015
(Magma) [Binomial(n, 3) - Binomial(Floor(n/2), 3) - Binomial(Ceiling(n/2), 3): n in [0..50]]; // Vincenzo Librandi, Oct 20 2018
(GAP) a:=[0, 0, 0, 1, 4, 9];; for n in [7..50] do a[n]:=2*a[n-1]+a[n-2]-4*a[n-3]+a[n-4]+2*a[n-5]-a[n-6]; od; a; # Muniru A Asiru, Oct 21 2018
CROSSREFS
Sequence in context: A008146 A038098 A299274 * A196039 A360043 A238091
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Nov 10 2005
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)