The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A066456 Upper bound on number of regular triangulations of cyclic polytope C(n, n-4). 1
1, 1, 2, 4, 8, 14, 25, 40, 65, 97, 146, 206, 292, 394, 533, 694, 905, 1145, 1450, 1792, 2216, 2686, 3257, 3884, 4633, 5449, 6410, 7450, 8660, 9962, 11461, 13066, 14897, 16849, 19058, 21404, 24040, 26830, 29945, 33232, 36881, 40721, 44962, 49414, 54308, 59434 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
M. Azaola and F. Santos, The number of triangulations of the cyclic polytope C(n,n-4), Discrete Comput. Geom., 27 (2002), 29-48.
FORMULA
G.f.: x*(1-x-4*x^5+x^6-2*x^2+4*x^3+2*x^4+2*x^7) / ( (1+x)^3*(1-x)^5 ). - R. J. Mathar, Aug 07 2014
From Colin Barker, May 04 2017: (Start)
a(n) = (n^4 - 8*n^3 + 52*n^2 - 112*n + 128) / 64 for n even.
a(n) = (n^4 - 8*n^3 + 54*n^2 - 120*n + 137) / 64 for n odd.
a(n) = 2*a(n-1) + 2*a(n-2) - 6*a(n-3) + 6*a(n-5) - 2*a(n-6) - 2*a(n-7) + a(n-8) for n>8.
(End)
MAPLE
A066456 := proc(n) local m; if n mod 2 = 0 then m := n/2; 6*binomial(m, 4)+3*binomial(m, 3)+4*binomial(m, 2)-m+2; else m := (n+1)/2; 6*binomial(m, 4)+5*binomial(m, 2)-4*m+5; fi; end;
MATHEMATICA
CoefficientList[Series[-(1 - x - 4 x^5 + x^6 - 2 x^2 + 4 x^3 + 2 x^4 + 2 x^7)/((1 + x)^3 (x - 1)^5), {x, 0, 50}], x] (* Vincenzo Librandi, Aug 07 2014 *)
PROG
(PARI) Vec(x*(1 - x - 2*x^2 + 4*x^3 + 2*x^4 - 4*x^5 + x^6 + 2*x^7) / ((1 - x)^5*(1 + x)^3) + O(x^60)) \\ Colin Barker, May 04 2017
CROSSREFS
Cf. A066375 (bisection), A066455 (bisection).
Sequence in context: A164177 A164157 A164175 * A066342 A340658 A291443
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jan 04 2002
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 May 14 17:50 EDT 2024. Contains 372533 sequences. (Running on oeis4.)