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.

A093566 a(n) = n*(n-1)*(n-2)*(n-3)*(n^2-3*n-2)/48.

This page as a plain text file.
%I A093566 #43 Aug 27 2024 21:45:58
%S A093566 0,0,0,0,1,20,120,455,1330,3276,7140,14190,26235,45760,76076,121485,
%T A093566 187460,280840,410040,585276,818805,1125180,1521520,2027795,2667126,
%U A093566 3466100,4455100,5668650,7145775,8930376,11071620,13624345,16649480,20214480
%N A093566 a(n) = n*(n-1)*(n-2)*(n-3)*(n^2-3*n-2)/48.
%C A093566 a(n+1) is the number of chiral pairs of colorings of the faces of a cube (vertices of a regular octahedron) using n or fewer colors. - _Robert A. Russell_, Sep 28 2020
%H A093566 Solomon W. Golomb, <a href="http://www.jstor.org/stable/2321859">Iterated binomial coefficients</a>, Amer. Math. Monthly, 87 (1980), 719-727.
%H A093566 <a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (7,-21,35,-35,21,-7,1).
%F A093566 a(n) = binomial(binomial(n-1, 2), 3).
%F A093566 G.f.: -x^4*(1+13*x+x^2)/(x-1)^7. - _R. J. Mathar_, Dec 08 2010
%F A093566 a(n+1) = 1*C(n,3) + 16*C(n,4) + 30*C(n,5) + 15*C(n,6), where the coefficient of C(n,k) is the number of chiral pairs of colorings using exactly k colors. - _Robert A. Russell_, Sep 28 2020
%F A093566 a(n) = A000217(n-1)*A239352(n-2)/6. - _R. J. Mathar_, Mar 25 2022
%e A093566 For a(3+1) = 1, each of the three colors is applied to a pair of adjacent faces of the cube (vertices of the octahedron). - _Robert A. Russell_, Sep 28 2020
%t A093566 Table[ Binomial[ Binomial[n-1, 2], 3], {n,0,32}]
%t A093566 LinearRecurrence[{7,-21,35,-35,21,-7,1},{0,0,0,0,1,20,120},40] (* _Harvey P. Dale_, Feb 18 2016 *)
%o A093566 (Sage) [(binomial(binomial(n,2),3)) for n in range(-1, 33)] # _Zerinvary Lajos_, Nov 30 2009
%o A093566 (PARI) a(n)=n*(n-1)*(n-2)*(n-3)*(n^2-3*n-2)/48 \\ _Charles R Greathouse IV_, Jun 11 2015
%Y A093566 From _Robert A. Russell_, Sep 28 2020: (Start)
%Y A093566 Cf. A047780 (oriented), A198833 (unoriented), A337898 (achiral) colorings.
%Y A093566 a(n+1) = A325006(3,n) (chiral pairs of colorings of orthotope facets or orthoplex vertices).
%Y A093566 a(n+1) = A337889(3,n) (chiral pairs of colorings of orthotope faces or orthoplex peaks).
%Y A093566 Other polyhedra: A000332 (tetrahedron), A337896 (cube/octahedron).
%Y A093566 (End)
%K A093566 nonn,easy
%O A093566 0,6
%A A093566 _Robert G. Wilson v_ and _Santi Spadaro_, Mar 31 2004
%E A093566 Edited (with a new definition) by _N. J. A. Sloane_, Jul 02 2008