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.

Showing 1-10 of 10 results.

A063843 Number of n-multigraphs on 5 nodes.

Original entry on oeis.org

0, 1, 34, 792, 10688, 90005, 533358, 2437848, 9156288, 29522961, 84293770, 217993600, 519341472, 1154658869, 2420188694, 4821091920, 9187076352, 16837177281, 29809183410, 51172613512, 85448030080, 139159855989, 221554769150, 345523218536, 528767663040
Offset: 0

Views

Author

N. J. A. Sloane, Aug 25 2001

Keywords

Comments

Equivalently, number of ways to color edges of complete graph on 5 nodes with n colors, under action of symmetric group S_5, of order 120, with cycle index on edges given by (1/120)*(24*x5^2 + 30*x2*x4^2 + 20*x3^3*x1 + 20*x3*x6*x1 + 15*x1^2*x2^4 + 10*x1^4*x2^3 + x1^10). Setting all x_i = n gives the sequence.
Number of vertex colorings of the Petersen graph. Marko Riedel, Mar 24 2016
Number of unoriented colorings of the 10 triangular edges or triangular faces of a pentachoron, Schläfli symbol {3,3,3}, using n or fewer colors. Also called a 5-cell or 4-simplex. - Robert A. Russell, Oct 17 2020

Crossrefs

Cf. A063842. A row of A063841.
Cf. A331350 (oriented), A331352 (chiral), A331353 (achiral), A000389(n+4) (vertices and facets)
Other polychora: A331359 (8-cell), A331355 (16-cell), A338953 (24-cell), A338965 (120-cell, 600-cell).
Row 4 of A327084 (simplex edges and ridges) and A337884 (simplex faces and peaks).

Programs

  • Maple
    f:=n-> 1/120*(24*n^2+50*n^3+20*n^4+15*n^6+10*n^7+n^10);
  • Mathematica
    Table[(24n^2+50n^3+20n^4+15n^6+10n^7+n^10)/120,{n,0,30}] (* or *) LinearRecurrence[{11,-55,165,-330,462,-462,330,-165,55,-11,1},{0,1,34,792,10688,90005,533358,2437848,9156288,29522961,84293770},30] (* Harvey P. Dale, Oct 20 2012 *)
  • PARI
    a(n)=n^2*(n^8+10*n^5+15*n^4+20*n^2+50*n+24)/120 \\ Charles R Greathouse IV, Jan 20 2012

Formula

a(n) = (1/120)*(24*n^2+50*n^3+20*n^4+15*n^6+10*n^7+n^10).
a(n+1) = (1/5!)*(n^10 + 10*n^9 + 45*n^8 + 130*n^7 + 295*n^6 + 552*n^5 + 805*n^4 + 900*n^3 + 774*n^2 + 448*n + 120).
G.f. = (1 + 23*x + 473*x^2 + 3681*x^3 + 10717*x^4 + 11221*x^5 + 3779*x^6 + 339*x^7 + 6*x^8)/(1-x)^11. - M. F. Hasler, Jan 19 2012
a(0)=0, a(1)=1, a(2)=34, a(3)=792, a(4)=10688, a(5)=90005, a(6)=533358, a(7)=2437848, a(8)=9156288, a(9)=29522961, a(10)=84293770, a(n)= 11*a(n-1)- 55*a(n-2)+165*a(n-3)-330*a(n-4)+462*a(n-5)-462*a(n-6)+ 330*a(n-7)- 165*a(n-8)+55*a(n-9)-11*a(n-10)+a(n-11). - Harvey P. Dale, Oct 20 2012
From Robert A. Russell, Oct 17 2020: (Start)
a(n) = A331350(n) - A331352(n) = (A331350(n) + A331353(n)) / 2 = A331352(n) + A331353(n).
a(n) = 1*C(n,1) + 32*C(n,2) + 693*C(n,3) + 7720*C(n,4) + 44150*C(n,5) + 138312*C(n,6) + 247380*C(n,7) + 252000*C(n,8) + 136080*C(n,9) + 30240*C(n,10), where the coefficient of C(n,k) is the number of unoriented colorings using exactly k colors. (End)

Extensions

More terms from Vladeta Jovovic, Sep 02 2001

A327083 Array read by descending antidiagonals: A(n,k) is the number of oriented colorings of the edges of a regular n-dimensional simplex using up to k colors.

Original entry on oeis.org

1, 2, 1, 3, 4, 1, 4, 11, 12, 1, 5, 24, 87, 40, 1, 6, 45, 416, 1197, 184, 1, 7, 76, 1475, 18592, 42660, 1296, 1, 8, 119, 4236, 166885, 3017600, 4223313, 17072, 1, 9, 176, 10437, 1019880, 85025050, 1748176768, 1139277096, 424992
Offset: 1

Views

Author

Robert A. Russell, Aug 19 2019

Keywords

Comments

An n-dimensional simplex has n+1 vertices and (n+1)*n/2 edges. For n=1, the figure is a line segment with one edge. For n-2, the figure is a triangle with three edges. For n=3, the figure is a tetrahedron with six edges. The Schläfli symbol, {3,...,3}, of the regular n-dimensional simplex consists of n-1 threes. Two oriented colorings are the same if one is a rotation of the other; chiral pairs are counted as two.
A(n,k) is also the number of oriented colorings of (n-2)-dimensional regular simplices in an n-dimensional simplex using up to k colors. Thus, A(2,k) is also the number of oriented colorings of the vertices (0-dimensional simplices) of an equilateral triangle.

Examples

			Array begins with A(1,1):
  1  2    3     4      5       6       7        8        9        10 ...
  1  4   11    24     45      76     119      176      249       340 ...
  1 12   87   416   1475    4236   10437    22912    45981     85900 ...
  1 40 1197 18592 166885 1019880 4738153 17962624 58248153 166920040 ...
  ...
For A(2,3) = 11, the nine achiral colorings are AAA, AAB, AAC, ABB, ACC, BBB, BBC, BCC, and CCC. The chiral pair is ABC-ACB.
		

Crossrefs

Cf. A327084 (unoriented), A327085 (chiral), A327086 (achiral), A327087 (exactly k colors), A324999 (vertices, facets), A337883 (faces, peaks), A337407 (orthotope edges, orthoplex ridges), A337411 (orthoplex edges, orthotope ridges).
Rows 1-4 are A000027, A006527, A046023, A331350.
Column 2 is A218144(n+1).

Programs

  • Mathematica
    CycleX[{2}] = {{1,1}}; (* cycle index for permutation with given cycle structure *)
    CycleX[{n_Integer}] := CycleX[n] = If[EvenQ[n], {{n/2,1}, {n,(n-2)/2}}, {{n,(n-1)/2}}]
    compress[x : {{, } ...}] := (s = Sort[x]; For[i=Length[s], i>1, i-=1, If[s[[i,1]] == s[[i-1,1]], s[[i-1,2]]+=s[[i,2]]; s=Delete[s,i], Null]]; s)
    CycleX[p_List] := CycleX[p] = compress[Join[CycleX[Drop[p,-1]], If[Last[p] > 1, CycleX[{Last[p]}], ## &[]], If[# == Last[p], {#, Last[p]}, {LCM[#, Last[p]], GCD[#, Last[p]]}] & /@ Drop[p,-1]]]
    pc[p_List] := Module[{ci, mb}, mb = DeleteDuplicates[p]; ci = Count[p, #] & /@ mb; Total[p]!/(Times @@ (ci!) Times @@ (mb^ci))] (*partition count*)
    row[n_Integer] := row[n] = Factor[Total[If[EvenQ[Total[1-Mod[#,2]]], pc[#] j^Total[CycleX[#]][[2]], 0] & /@ IntegerPartitions[n+1]]/((n+1)!/2)]
    array[n_, k_] := row[n] /. j -> k
    Table[array[n,d-n+1], {d,1,10}, {n,1,d}] // Flatten
    (* Using Fripertinger's exponent per Andrew Howroyd's code in A063841: *)
    pc[p_] := Module[{ci, mb}, mb = DeleteDuplicates[p]; ci = Count[p, #] &/@ mb; Total[p]!/(Times @@ (ci!) Times @@ (mb^ci))]
    ex[v_] := Sum[GCD[v[[i]], v[[j]]], {i,2,Length[v]}, {j,i-1}] + Total[Quotient[v,2]]
    array[n_,k_] := Total[If[EvenQ[Total[1-Mod[#,2]]], pc[#]k^ex[#], 0] &/@ IntegerPartitions[n+1]]/((n+1)!/2)
    Table[array[n,d-n+1], {d,10}, {n,d}] // Flatten

Formula

The algorithm used in the Mathematica program below assigns each permutation of the vertices to a partition of n+1. It then determines the number of permutations for each partition and the cycle index for each partition.
A(n,k) = Sum_{j=1..(n+1)*n/2} A327087(n,j) * binomial(k,j).
A(n,k) = A327084(n,k) + A327085(n,k) = 2*A327084(n,k) - A327086(n,k) = 2*A327085(n,k) + A327086(n,k).

A331353 Number of achiral colorings of the edges (or triangular faces) of a regular 4-dimensional simplex with n available colors.

Original entry on oeis.org

1, 28, 387, 2784, 13125, 46836, 137543, 349952, 797769, 1667500, 3248971, 5973408, 10459917, 17571204, 28479375, 44742656, 68393873, 102041532, 148984339, 213340000, 300189141, 415735188, 567481047, 764423424
Offset: 1

Views

Author

Robert A. Russell, Jan 14 2020

Keywords

Comments

A 4-dimensional simplex has 5 vertices and 10 edges. Its Schläfli symbol is {3,3,3}. An achiral coloring is identical to its reflection,
There are 60 elements in the automorphism group of the 4-dimensional simplex that are not in its rotation group. Each is an odd permutation of the vertices and can be associated with a partition of 5 based on the conjugacy group of the permutation. The first formula is obtained by averaging their cycle indices after replacing x_i^j with n^j according to the Pólya enumeration theorem.
Partition Count Odd Cycle Indices
41 30 x_2^1x_4^2
32 20 x_1^1x_3^1x_6^1
2111 10 x_1^4x_2^3

Crossrefs

Cf. A331350 (oriented), A063843 (unoriented), A331352 (chiral).
Other polychora: A331361 (8-cell), A331357 (16-cell), A338955 (24-cell), A338967 (120-cell, 600-cell).
Row 4 of A327086 (simplex edges and ridges) and A337886 (simplex faces and peaks).

Programs

  • Mathematica
    Table[(5 n^3 + n^7)/6, {n, 1, 25}]
  • PARI
    Vec(x*(1 + 20*x + 191*x^2 + 416*x^3 + 191*x^4 + 20*x^5 + x^6) / (1 - x)^8 + O(x^25)) \\ Colin Barker, Jan 15 2020

Formula

a(n) = (5*n^3 + n^7) / 6.
a(n) = C(n,1) + 26*C(n,2) + 306*C(n,3) + 1400*C(n,4) + 2800*C(n,5) + 2520*C(n,6) + 840*C(n,7), where the coefficient of C(n,k) is the number of colorings using exactly k colors.
a(n) = 2*A063843(n) - A331350(n) = A331350(n) - 2*A331352(n) = A063843(n) - A331352(n).
From Colin Barker, Jan 15 2020: (Start)
G.f.: x*(1 + 20*x + 191*x^2 + 416*x^3 + 191*x^4 + 20*x^5 + x^6) / (1 - x)^8.
a(n) = 8*a(n-1) - 28*a(n-2) + 56*a(n-3) - 70*a(n-4) + 56*a(n-5) - 28*a(n-6) + 8*a(n-7) - a(n-8) for n>8.
(End)

A331354 Number of oriented colorings of the edges of a regular 4-dimensional orthoplex with n available colors.

Original entry on oeis.org

1, 90054, 1471640157, 1466049174160, 310441584462375, 24679078461920106, 997818989210621704, 24595659246351652992, 415450226822646218895, 5208333343963621522750, 51300691059764724112161, 414046079318115654521904
Offset: 1

Views

Author

Robert A. Russell, Jan 14 2020

Keywords

Comments

A regular 4-dimensional orthoplex (also hyperoctahedron or cross polytope) has 8 vertices and 24 edges. Its Schläfli symbol is {3,3,4}. Two oriented colorings are the same if one is a rotation of the other; chiral pairs are counted as two. Also the number of oriented colorings of the square faces of a tesseract {4,3,3} with n available colors.
There are 192 elements in the rotation group of the 4-dimensional orthoplex. Each is associated with a partition of 4 based on the conjugacy group of the permutation of the axes. The first formula is obtained by averaging their cycle indices after replacing x_i^j with n^j according to the Pólya enumeration theorem.
Partition Count Even Cycle Indices
4 6 8x_8^3
31 8 4x_3^8 + 4x_6^4
22 3 4x_1^4x_2^10 + 4x_4^6
211 6 4x_1^2x_2^11 + 2x_1^4x_4^5 + 2x_2^2x_4^5
1111 1 6x_1^4x_2^10 + x_1^24 + x_2^12

Crossrefs

Cf. A331355 (unoriented), A331356 (chiral), A331357 (achiral).
Other polychora: A331350 (5-cell), A331358 (8-cell), A338952 (24-cell), A338964 (120-cell, 600-cell).
Row 4 of A337411 (orthoplex edges, orthotope ridges) and A337887 (orthotope faces, orthoplex peaks).

Programs

  • Mathematica
    Table[(48n^3 + 32n^4 + 12n^6 + 12n^7 + 32n^8 + 12n^9 + n^12 + 24n^13 + 18n^14 + n^24)/192, {n, 1, 25}]

Formula

a(n) = (48*n^3 + 32*n^4 + 12*n^6 + 12*n^7 + 32*n^8 + 12*n^9 + n^12 + 24*n^13 + 18*n^14 + n^24) / 192.
a(n) = C(n,1) + 90052*C(n,2) + 1471369998*C(n,3) + 1460163153852*C(n,4) + 303126054092610*C(n,5) + 22838390261305920*C(n,6) + 831533453035309605*(n,7) + 17286839341903413240*C(n,8) + 227976665667323280750*C(n,9) + 2046002146009161624900*C(n,10) + 13118524448411114548200*C(n,11) + 62195874413179579657200*C(n,12) + 223421486565003375448800*C(n,13) + 618462331903782130564800*C(n,14) + 1333693289177381452320000*C(n,15) + 2253251792722109699520000*C(n,16) + 2984347082566196867520000*C(n,17) + 3083974243985846090880000*C(n,18) + 2458713052058007064320000*C(n,19) + 1482204734016157831680000*C(n,20) + 653167360418390737920000*C(n,21) + 198468086839148206080000*C(n,22) + 37162274062147153920000*C(n,23) + 3231502092360622080000*C(n,24), where the coefficient of C(n,k) is the number of colorings using exactly k colors.
a(n) = A331355(n) + A331356(n) = 2*A331355(n) - A331357(n) = 2*A331356(n) + A331357(n).

A331358 Number of oriented colorings of the edges of a tesseract with n available colors.

Original entry on oeis.org

1, 22409620, 9651199594275, 96076801068337216, 121265960728368199375, 41451359960612034644436, 5752227470227262715982165, 412646679764073090531066880, 17883769897375781105874361581
Offset: 1

Views

Author

Robert A. Russell, Jan 14 2020

Keywords

Comments

A tesseract is a regular 4-dimensional orthotope or hypercube with 16 vertices and 32 edges. Its Schläfli symbol is {4,3,3}. Two oriented colorings are the same if one is a rotation of the other; chiral pairs are counted as two. Also the number of oriented colorings of the triangular faces of a regular 4-dimensional orthoplex {3,3,4} with n available colors.
There are 192 elements in the rotation group of the tesseract. Each is associated with a partition of 4 based on the conjugacy group of the permutation of the axes. The first formula is obtained by averaging their cycle indices after replacing x_i^j with n^j according to the Pólya enumeration theorem.
Partition Count Even Cycle Indices
4 6 8x_8^4
31 8 4x_1^2x_3^10 + 4x_2^1x_6^5
22 3 4x_2^16 + 4x_4^8
211 6 4x_1^4x_2^14 + 4x_4^8
1111 1 x_1^32 + 7x_2^16

Crossrefs

Cf. A331359 (unoriented), A331360 (chiral), A331361 (achiral).
Cf. A331350 (simplex), A331354 (orthoplex), A338952 (24-cell), A338964 (120-cell, 600-cell).

Programs

  • Mathematica
    Table[(48n^4 + 32n^6 + 36n^8 + 32n^12 + 19n^16 + 24n^18 + n^32)/192, {n, 1, 25}]

Formula

a(n) = (48*n^4 + 32*n^6 + 36*n^8 + 32*n^12 + 19*n^16 + 24*n^18 + n^32) / 192.
a(n) = C(n,1) + 22409618*C(n,2) + 9651132365418*C(n,3) + 96038196404417832*C(n,4) + 120785673234798359850*C(n,5) + 40725205155234194765220*C(n,6) + 5464611173328028329053040*C(n,7) + 367782713912186945387883840*C(n,8) + 14373563321596798877701789800*C(n,9) + 359883141899402124632485810800*C(n,10) + 6184991837595074128351177096800*C(n,11) + 76711443861342809436413801659200*C(n,12) + 712777405284132776184971034460800*C(n,13) + 5104524541259652946568783959507200*C(n,14) + 28797485239301310151711610238720000*C(n,15) + 130163892496470993203014850790912000*C(n,16) + 477548461917280632356433595575936000*C(n,17) + 1436223810514558840121822575516416000*C(n,18) + 3566452148795758403208660387955200000*C(n,19) + 7348050481070906467554726390758400000*C(n,20) + 12594856495384277051085880584652800000*C(n,21) + 17969280084916069147800454551859200000*C(n,22) + 21302862405912312079825436975308800000*C(n,23) + 20896529603947922315711136828211200000*C(n,24) + 16837871283345549751877122560000000000*C(n,25) + 11021533432128296153318764634112000000*C(n,26) + 5764800913106992933428143603712000000*C(n,27) + 2351280741029830331492705206272000000*C(n,28) + 720354927933711780177833164800000000*C(n,29) + 155891316152123120086047129600000000*C(n,30) + 21242333189959633945791037440000000*C(n,31) + 1370473109029653802954260480000000*C(n,32), where the coefficient of C(n,k) is the number of colorings using exactly k colors.
a(n) = A331359(n) + A331360(n) = 2*A331359(n) - A331361(n) = 2*A331360(n) + A331361(n).

A331352 Number of chiral pairs of colorings of the edges (or triangular faces) of a regular 4-dimensional simplex with n available colors.

Original entry on oeis.org

0, 6, 405, 7904, 76880, 486522, 2300305, 8806336, 28725192, 82626270, 214744629, 513368064, 1144198952, 2402617490, 4792612545, 9142333696, 16768783408, 29707141878, 51023629173, 85234690080, 138859666848
Offset: 1

Views

Author

Robert A. Russell, Jan 14 2020

Keywords

Comments

A 4-dimensional simplex has 5 vertices and 10 edges. Its Schläfli symbol is {3,3,3}. The chiral colorings of its edges come in pairs, each the reflection of the other.

Crossrefs

Cf. A331350 (oriented), A063843 (unoriented), A331353 (achiral).
Other polychora: A331360 (8-cell), A331356 (16-cell), A338954 (24-cell), A338966 (120-cell, 600-cell).
Row 4 of A327085 (simplex edges and ridges) and A337885 (simplex faces and peaks).

Programs

  • Mathematica
    Table[(24n^2 - 50n^3 + 20n^4 + 15n^6 - 10n^7 + n^10)/120, {n, 1, 25}]

Formula

a(n) = (24*n^2 - 50*n^3 + 20*n^4 + 15*n^6 - 10*n^7 + n^10) / 120.
a(n) = 6*C(n,2) + 387*C(n,3) + 6320*C(n,4) + 41350*C(n,5) + 135792*C(n,6) + 246540*C(n,7) + 252000*C(n,8) + 136080*C(n,9) + 30240*C(n,10), where the coefficient of C(n,k) is the number of colorings using exactly k colors.
a(n) = A331350(n) - A063843(n) = (A331350(n) - A331353(n)) / 2 = A063843(n) - A331353(n).

A337883 Array read by descending antidiagonals: T(n,k) is the number of oriented colorings of the triangular faces of a regular n-dimensional simplex using k or fewer colors.

Original entry on oeis.org

1, 2, 1, 3, 5, 1, 4, 15, 40, 1, 5, 36, 1197, 3504, 1, 6, 75, 18592, 9753615, 13724608, 1, 7, 141, 166885, 3056311808, 19854224207910, 3574466244480, 1, 8, 245, 1019880, 264940140875, 468488921670219776, 25959704193068472575379, 106607224611810055168, 1
Offset: 2

Views

Author

Robert A. Russell, Sep 28 2020

Keywords

Comments

Each chiral pair is counted as two when enumerating oriented arrangements. An n-simplex has n+1 vertices. For n=2, the figure is a triangle with one triangular face. For n=3, the figure is a tetrahedron with 4 triangular faces. For higher n, the number of triangular faces is C(n+1,3).
Also the number of oriented colorings of the peaks of a regular n-dimensional simplex. A peak of an n-simplex is an (n-3)-dimensional simplex.

Examples

			The table begins with T(2,1):
 1    2       3          4            5              6               7 ...
 1    5      15         36           75            141             245 ...
 1   40    1197      18592       166885        1019880         4738153 ...
 1 3504 9753615 3056311808 264940140875 10156268150064 221646915632373 ...
For T(3,4)=36, the 34 achiral arrangements are AAAA, AAAB, AAAC, AAAD, AABB, AABC, AABD, AACC, AACD, AADD, ABBB, ABBC, ABBD, ABCC, ABDD, ACCC, ACCD, ACDD, ADDD, BBBB, BBBC, BBBD, BBCC, BBCD, BBDD, BCCC, BCCD, BCDD, BDDD, CCCC, CCCD, CCDD, CDDD, and DDDD. The chiral pair is ABCD-ABDC.
		

Crossrefs

Cf. A337884 (unoriented), A337885 (chiral), A337886 (achiral), A051168 (binary Lyndon words).
Other elements: A324999 (vertices), A327083 (edges).
Other polytopes: A337887 (orthotope), A337891 (orthoplex).
Rows 2-4 are A000027, A006008, A331350.

Programs

  • Mathematica
    m=2; (* dimension of color element, here a triangular face *)
    lw[n_,k_]:=lw[n, k]=DivisorSum[GCD[n,k],MoebiusMu[#]Binomial[n/#,k/#]&]/n (*A051168*)
    cxx[{a_, b_},{c_, d_}]:={LCM[a, c], GCD[a, c] b d}
    compress[x:{{, } ...}] := (s=Sort[x];For[i=Length[s],i>1,i-=1,If[s[[i,1]]==s[[i-1,1]], s[[i-1,2]]+=s[[i,2]]; s=Delete[s,i], Null]]; s)
    combine[a : {{, } ...}, b : {{, } ...}] := Outer[cxx, a, b, 1]
    CX[p_List, 0] := {{1, 1}} (* cycle index for partition p, m vertices *)
    CX[{n_Integer}, m_] := If[2m>n, CX[{n}, n-m], CX[{n},m] = Table[{n/k, lw[n/k, m/k]}, {k, Reverse[Divisors[GCD[n, m]]]}]]
    CX[p_List, m_Integer] := CX[p, m] = Module[{v = Total[p], q, r}, If[2 m > v, CX[p, v - m], q = Drop[p, -1]; r = Last[p]; compress[Flatten[Join[{{CX[q, m]}}, Table[combine[CX[q, m - j], CX[{r}, j]], {j, Min[m, r]}]], 2]]]]
    pc[p_] := Module[{ci, mb}, mb = DeleteDuplicates[p]; ci = Count[p, #] &/@ mb; Total[p]!/(Times @@ (ci!) Times @@ (mb^ci))] (* partition count *)
    row[n_Integer] := row[n] = Factor[Total[If[EvenQ[Total[1-Mod[#, 2]]], pc[#] j^Total[CX[#, m+1]][[2]], 0] & /@ IntegerPartitions[n+1]]/((n+1)!/2)]
    array[n_, k_] := row[n] /. j -> k
    Table[array[n,d+m-n], {d,8}, {n,m,d+m-1}] // Flatten

Formula

The algorithm used in the Mathematica program below assigns each permutation of the vertices to a partition of n+1. It then determines the number of permutations for each partition and the cycle index for each partition using a formula for binary Lyndon words. If the value of m is increased, one can enumerate colorings of higher-dimensional elements beginning with T(m,1).
T(n,k) = A337884(n,k) + A337885(n,k) = 2*A337884(n,k) - A337886(n,k) = 2*A337885(n,k) + A337886(n,k).

A338952 Number of oriented colorings of the 96 edges (or triangular faces) of the 4-D 24-cell using subsets of a set of n colors.

Original entry on oeis.org

1, 137548893254081168086800768, 11046328890861011039111168376671536861388643, 10897746068379654103881579020805286236644252743361724416
Offset: 1

Views

Author

Robert A. Russell, Nov 17 2020

Keywords

Comments

Each chiral pair is counted as two when enumerating oriented arrangements. The Schläfli symbol of the 24-cell is {3,4,3}. It has 24 octahedral facets. It is self-dual. There are 576 elements in the rotation group of the 24-cell. They divide into 20 conjugacy classes. The first formula is obtained by averaging the edge (or face) cycle indices after replacing x_i^j with n^j according to the Pólya enumeration theorem.
Count Even Cycle Indices Count Even Cycle Indices
1 x_1^96 6+6+36+36 x_4^24
72 x_1^4x_2^46 32 x_2^3x_6^15
1+18 x_2^48 8+8+32 x_6^16
32 x_1^6x_3^30 72+72 x_8^12
8+8+32 x_3^32 48+48 x_12^8

Crossrefs

Cf. A338953 (unoriented), A338954 (chiral), A338955 (achiral), A338956 (exactly n colors), A338948 (vertices, facets), A331350 (5-cell), A331358 (8-cell edges, 16-cell faces), A331354 (16-cell edges, 8-cell faces), A338964 (120-cell, 600-cell).

Programs

  • Mathematica
    Table[(96n^8+144n^12+48n^16+32n^18+84n^24+48n^32+32n^36+19n^48+72n^50+n^96)/576,{n,15}]

Formula

a(n) = (96*n^8 + 144*n^12 + 48*n^16 + 32*n^18 + 84*n^24 + 48*n^32 + 32*n^36 + 19*n^48 + 72*n^50 + n^96) / 576.
a(n) = Sum_{j=1..Min(n,96)} A338956(n) * binomial(n,j).
a(n) = A338953(n) + A338954(n) = 2*A338953(n) - A338955(n) = 2*A338954(n) + A338955(n).

A337895 Number of oriented colorings of the tetrahedral facets (or vertices) of a regular 4-dimensional simplex using n or fewer colors.

Original entry on oeis.org

1, 6, 21, 56, 127, 258, 483, 848, 1413, 2254, 3465, 5160, 7475, 10570, 14631, 19872, 26537, 34902, 45277, 58008, 73479, 92114, 114379, 140784, 171885, 208286, 250641, 299656, 356091, 420762, 494543, 578368, 673233
Offset: 1

Views

Author

Robert A. Russell, Sep 28 2020

Keywords

Comments

Each chiral pair is counted as two when enumerating oriented arrangements. Also called a 5-cell or pentachoron. The Schläfli symbol is {3,3,3}, and it has 5 tetrahedral facets (vertices).
There are 60 elements in the rotation group of the 4-dimensional simplex. Each is an even permutation of the vertices and can be associated with a partition of 5 based on the conjugacy class of the permutation. The first formula is obtained by averaging their cycle indices after replacing x_i^j with n^j according to the Pólya enumeration theorem.
Partition Count Even Cycle Indices
5 24 x_5^1
311 20 x_1^2x_3^1
221 15 x_1^1x_2^2
11111 1 x_1^5

Examples

			For a(2)=6, the colors are AAAAA, AAAAB, AAABB, AABBB, ABBBB, and BBBBB.
		

Crossrefs

Cf. A000389(n+4) (unoriented), A000389(chiral), A132366(n-1) (achiral), A331350 (edges, faces), A337952 (8-cell vertices, 16-cell facets), A337956(16-cell vertices, 8-cell facets), A338948 (24-cell), A338964 (120-cell, 600-cell).
Row 4 of A324999 (oriented colorings of facets or vertices of an n-simplex).

Programs

  • Mathematica
    Table[n (24 + 35 n^2 + n^4)/60, {n, 40}]

Formula

a(n) = n * (24 + 35*n^2 + n^4) / 60.
a(n) = binomial[4+n,5] + binomial[n,5].
a(n) = 1*C(n,1) + 4*C(n,2) + 6*C(n,3) + 4*C(n,4) + 2*C(n,5), where the coefficient of C(n,k) is the number of oriented colorings using exactly k colors.
a(n) = A000389(n+4) + A000389(n) = 2*A000389(n+4) - A132366(n-1) = 2*A000389(n) + A132366(n-1).

A338956 Number of oriented colorings of the 96 edges (or triangular faces) of the 4-D 24-cell using exactly n colors.

Original entry on oeis.org

1, 137548893254081168086800766, 11046328890861010626464488614428032600986342, 10897746068335468788318134977474134922662053604436974448, 21912802868317153141871319582922663027477920477404414535105616050
Offset: 1

Views

Author

Robert A. Russell, Nov 17 2020

Keywords

Comments

Each chiral pair is counted as two when enumerating oriented arrangements. The Schläfli symbol of the 24-cell is {3,4,3}. It has 24 octahedral facets. It is self-dual. For n>96, a(n) = 0.

Crossrefs

Cf. A338957 (unoriented), A338958 (chiral), A338959 (achiral), A338952 (up to n colors), A338948 (vertices, facets), A331350 (5-cell), A331358 (8-cell edges, 16-cell faces), A331354 (16-cell edges, 8-cell faces), A338980 (120-cell, 600-cell).

Programs

  • Mathematica
    bp[j_] := Sum[k! StirlingS2[j, k] x^k, {k, 0, j}] (* binomial series *)
    Drop[CoefficientList[bp[8]/6+bp[12]/4+bp[16]/12+bp[18]/18+7bp[24]/48+bp[32]/12+bp[36]/18+19bp[48]/576+bp[50]/8+bp[96]/576,x],1]

Formula

A338952(n) = Sum_{j=1..Min(n,96)} a(n) * binomial(n,j).
a(n) = A338957(n) + A338958(n) = 2*A338957(n) - A338959(n) = 2*A338958(n) + A338959(n).
Showing 1-10 of 10 results.