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 14 results. Next

A007173 Number of simplicial 3-clusters with n cells.

Original entry on oeis.org

1, 1, 1, 4, 10, 40, 171, 831, 4147, 21822, 117062, 642600, 3582322, 20256885, 115888201, 669911568, 3907720521, 22979343010, 136107859377, 811430160282, 4866004426320, 29337068299728, 177738920836446, 1081668278379000, 6609923004626478, 40546403939165805
Offset: 1

Views

Author

Keywords

Comments

Also arises in enumeration of stereoisomers of alkane systems.
"A simplicial d-cluster may be informally described as being constructed by gluing regular d-simplexes together facet-by-facet, at each stage gluing a new simplex to exactly one facet of a cluster already constructed. The equivalence classes of such clusters under rigid motions are in one-to-one correspondence with the combinatorial types of stack polytopes." [Hering et al., 1982] - Jonathan Vos Post, Apr 22 2011
The Hering article has an error in the 14th term. - Robert A. Russell, Apr 11 2012
Also same as A027610 with mirror-image not treated as equivalence. - Brendan McKay, Mar 08 2014
Number of oriented polyominoes composed of n tetrahedral cells of the hyperbolic regular tiling with Schläfli symbol {3,3,oo}. For oriented polyominoes, chiral pairs are counted as two. - Robert A. Russell, Mar 20 2024

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Sum of achiral symmetry types (A047775, A047773, A047760, A047754, A047753, A047751, A047771, A047766 [type N], A047765, A047764) plus twice sum of chiral symmetry types (A047776, A047774, A047762, A047758, A047752, A047769, A047766 [type O]) in Beineke article.
Cf. A027610 (unoriented), A371350 (chiral), A371351 (achiral), A001764 (rooted), A001683(n+2) {3,oo}, A007175 {3,3,3,oo}.

Programs

  • Mathematica
    Table[Binomial[3 n, n]/(3 (2 n + 1) (2 n + 2)) + If[OddQ[n], Binomial[3 (n - 1)/2 + 1, n]/(n + 1), Binomial[3 n/2, n]/(n + 1)]/2 + 2 Switch[Mod[n, 3], 0, 0, 1, Binomial[n, (n - 1)/3]/n, 2, Binomial[n, (n - 2)/3]/n]/3, {n, 1, 30}] (* Robert A. Russell, Apr 11 2012 *)

Formula

From Robert A. Russell, Mar 20 2024: (Start)
a(n) = C(3n,n)/(3*(2n+1)*(2n+2)) + ([0==n mod 2]*C(3n/2,n) + [1==n mod 2]*C((3n-1)/2,(n-1)/2)) / (2n+2) + 2*([1==n mod 3]*C(n,(n-1)/3) + [2==n mod 3]*C(n,(n-2)/3)) / (3n).
a(n) = A027610(n) + A371350(n) = 2*A027610(n) - A371351(n) = 2*A371350(n) + A371351(n).
a(n) = H(3,n) in Table 8 of Hering link.
G.f.: (-8 + 4*G(z) - 2*G(z)^2 + z*G(z)^4 + 6*G(z^2) + 3z*G(z^2)^2 + 8z*G(z^3) + 4z^2*G(z^3)^2)/12, where G(z) = 1 + z*G(z)^3 is the g.f. for A001764. (End)

Extensions

a(14) corrected and additional terms from Robert A. Russell, Apr 11 2012

A027610 The number of Apollonian networks (planar 3-trees) with n+3 vertices.

Original entry on oeis.org

1, 1, 1, 3, 7, 24, 93, 434, 2110, 11002, 58713, 321776, 1792133, 10131027, 57949430, 334970205, 1953890318, 11489753730, 68054102361, 405715557048, 2433003221232, 14668536954744, 88869466378593, 540834155878536, 3304961537938269, 20273202069859769
Offset: 1

Views

Author

Keywords

Comments

Previous name was: Number of chordal planar triangulations; also number of planar triangulations with maximal number of triangles; also number of graphs obtained from the tetrahedron by repeatedly inserting vertices of degree 3 into a triangular face; also number of uniquely 4-colorable planar graphs; also number of simplicial 3-clusters with n cells; also Apollonian networks with n+3 vertices.
Also arises in enumeration of spectral isomers of alkane systems (see Cyvin et al.). - N. J. A. Sloane, Aug 15 2006
Chordal planar triangulations: take planar triangulations on n nodes, divide them into classes according to how many triangles they contain (all have 2n-4 triangular faces but may have additional triangles); count triangulations in class with most triangles.
If mirror images are not taken as equivalent, A007173 is obtained instead. - Brendan McKay, Mar 08 2014
Number of unoriented polyominoes composed of n tetrahedral cells of the hyperbolic regular tiling with Schläfli symbol {3,3,oo}. For unoriented polyominoes, chiral pairs are counted as one. - Robert A. Russell, Mar 20 2024

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A007173 (oriented), A371350 (chiral), A371351 (achiral), A001764 (rooted), A000207 {3,oo}, A182322 {3,3,3,oo}.

Programs

Formula

From Robert A. Russell, Mar 20 2024: (Start)
a(n) = C(3n,n)/(6*(2n+1)*(2n+2)) + ([0==n mod 2]*7*C(3n/2,n) + [1==n mod 2]*9*C((3n-1)/2,n)) / (12(n+1)) + [1==n mod 3]*C(n-1,(n-1)/3)/(2n+1) + [2==n mod 3]*C(n-1,(n-2)/3)/(2n+2) + [1==n mod 4]*C((3n-3)/4,(n-1)/2)/(2n+2) + [2==n mod 6]*C(n/2-1,(n-2)/3)/(2n+2).
a(n) = A007173(n) - A371350(n) = (A007173(n) + A371351(n))/2 = A371350(n) + A371351(n).
a(n) = h(3,n) in Table 8 of Hering link.
G.f.: (-16 + 4*G(z) - 2*G(z)^2 + z*G(z)^4 + 14*G(z^2) + 9z*G(z^2)^2 + 8z*G(z^3) + 4z^2*G(z^3)^2 + 6z*G(z^4) + 4z^2*G(z^6))/24, where G(z) = 1 + z*G(z)^3 is the g.f. for A001764. (End)

Extensions

One additional term from Robert A. Russell, Apr 11 2012
Noted the name "Apollonian network" by Brendan McKay, Mar 08 2014
New name from Allan Bickle, Feb 21 2024

A371351 Number of achiral polyominoes composed of n tetrahedral cells of the hyperbolic regular tiling with Schläfli symbol {3,3,oo}.

Original entry on oeis.org

1, 1, 1, 2, 4, 8, 15, 37, 73, 182, 364, 952, 1944, 5169, 10659, 28842, 60115, 164450, 345345, 953814, 2016144, 5609760, 11920740, 33378072, 71250060, 200553733, 429757960, 1215177680, 2612635888, 7416503776
Offset: 1

Views

Author

Robert A. Russell, Mar 19 2024

Keywords

Comments

Also number of achiral simplicial 3-clusters or stack polytopes with n tetrahedral cells. An achiral polyomino is identical to its reflection.

Crossrefs

Sum of achiral symmetry types (A047775, A047773, A047760, A047754, A047753, A047751, A047771, A047766 [type N], A047765, A047764) in Beineke link.
Cf. A007173 (oriented), A027610 (oriented), A371350 (chiral), A001764 (rooted), A208355(n-1) {3,oo}, A182299 {3,3,3,oo}.

Programs

  • Mathematica
    Table[(If[OddQ[n],3Binomial[(3n-1)/2,n],2Binomial[3n/2,n]]+If[1==Mod[n,4],3Binomial[(3n-3)/4,(n-1)/2],0]+If[2==Mod[n,6],3Binomial[n/2-1,(n-2)/3],0])/(3n+3),{n,30}]

Formula

a(n) = ([0==n mod 2]*2*C(3n/2,n) + [1==n mod 2]*3*C((3n-1)/2,n) + [1==n mod4]*3*C((3n-3)/4,(n-1)/2) + [2==n mod6]*3*C(n/2-1,(n-2)/3)) / (3n+3).
a(n) = 2*A027610(n) - A007173(n) = A007173(n) - 2*A371350(n) = A027610(n) - A371350(n).
a(n) = 2*H(3,n) - h(3,n) in Table 8 of Hering link.
G.f.: (-4 + 4*G(z^2) + 3z*G(z^2)^2 + 3z*G(z^4) + 2z^2*G(z^6)) / 6, where G(z) = 1 + z*G(z)^3 is the g.f. for A001764.

A047753 Number of dissectable polyhedra with n tetrahedral cells and symmetry of type I.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 7, 0, 0, 0, 12, 0, 0, 0, 29, 0, 0, 0, 55, 0, 0, 0, 143, 0, 0, 0, 271, 0, 0, 0, 728, 0, 0, 0, 1428, 0, 0, 0, 3873, 0, 0, 0, 7752, 0, 0, 0, 21318, 0, 0, 0, 43256, 0, 0, 0, 120175, 0, 0, 0, 246675, 0, 0, 0
Offset: 1

Views

Author

Keywords

Comments

One of 17 different symmetry types comprising A007173 and A027610 and one of 10 for A371351. Also the number of tetrahedral clusters or polyominoes of the regular tiling with Schläfli symbol {3,3,oo}, both having type I achiral symmetry and n tetrahedral cells. The center of symmetry is the center of a tetrahedral cell (3.1); the order of the symmetry group is 8. An achiral polyomino is identical to its reflection. - Robert A. Russell, Mar 22 2024

Crossrefs

Cf. A047767.
Cf. A007173 (oriented), A027610 (unoriented), A371351 (achiral), A001764 (rooted), A047751 (type K), A047749 (type U).

Programs

  • Mathematica
    Table[Switch[Mod[n,8],1,4Binomial[(3n-3)/8,(n-1)/8]/(n+3)-If[17==Mod[n,24],24Binomial[(n-9)/8,(n-17)/24]/(n+7),0],5,4Binomial[(3n-7)/8,(n+3)/8]/(n-1)-If[5==Mod[n,24],12Binomial[(n-5)/8,(n-5)/12]/(n+7),0],,0]-Boole[1==n],{n,50}] (* _Robert A. Russell, Mar 22 2024 *)

Formula

If n=4m+1 then A047749(m) - A047751(n), otherwise 0.
G.f.: z*G(z^8) + z^5*G(z^8)^2 - z - z^5*G(z^24) - z^17*G(z^24)^2, where G(z) = 1 + z*G(z)^3 is the g.f. for A001764. - Robert A. Russell, Mar 22 2024

A047752 Number of chiral pairs of dissectable polyhedra with n tetrahedral cells and symmetry of type J.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3861, 0
Offset: 1

Views

Author

Keywords

Comments

One of 17 different symmetry types comprising A007173 and A027610 and one of 7 for A371350. Also the number of tetrahedral clusters or polyominoes of the regular tiling with Schläfli symbol {3,3,oo}, both having type J chiral symmetry and n tetrahedral cells. The center of symmetry is the center of a tetrahedral cell (3); the order of the symmetry group is 12. Each member of a chiral pair is a reflection but not a rotation of the other. - Robert A. Russell, Mar 22 2024

Crossrefs

Cf. A007173 (oriented), A027610 (unoriented), A371350 (chiral), A001764 (rooted), A047751 (type K).

Programs

  • Mathematica
    Table[Switch[Mod[n,24],5,6Binomial[(n-5)/4,(n-5)/12]/(n+1)-12Binomial[(n-5)/8,(n-5)/12]/(n+7),17,6Binomial[(n-5)/4,(n-5)/12]/(n+1)-24Binomial[(n-9)/8,(n-17)/24]/(n+7),,0]/2,{n,60}] (* _Robert A. Russell, Mar 22 2024 *)

Formula

If n=12m+5 then (1/2)*(A001764(m) - A047751(n)), otherwise 0.
G.f.: z^5 * (G(z^12) - G(z^24) - z^12*G(z^24)^2) / 2, where G(z) = 1 + z*G(z)^3 is the g.f. for A001764. - Robert A. Russell, Mar 22 2024

A047760 Number of dissectable polyhedra with n tetrahedral cells and symmetry of type F.

Original entry on oeis.org

0, 0, 1, 0, 1, 0, 3, 0, 5, 0, 12, 0, 23, 0, 55, 0, 114, 0, 273, 0, 588, 0, 1428, 0, 3156, 0, 7752, 0, 17427, 0, 43263, 0, 98516, 0, 246675, 0, 567281, 0, 1430715, 0, 3316521, 0, 8414640, 0, 19633796, 0, 50067108, 0, 117464424, 0, 300830572, 0, 709098696
Offset: 1

Views

Author

Keywords

Comments

One of 17 different symmetry types comprising A007173 and A027610 and one of 10 for A371351. Also the number of tetrahedral clusters or polyominoes of the regular tiling with Schläfli symbol {3,3,oo}, both having type F chiral symmetry and n tetrahedral cells. The axis of symmetry connects opposite edge centers of a tetrahedron (31); the order of the symmetry group is 4. An achiral polyomino is identical to its reflection. - Robert A. Russell, Mar 22 2024

Crossrefs

Cf. A007173 (oriented), A027610 (unoriented), A371351 (achiral), A001764 (rooted), A047751 (type K), A047753 (type I).

Programs

  • Mathematica
    Table[Switch[Mod[n,4],3,6Binomial[(3n-1)/4,(n+1)/2]/(n+3),1,(5n-1)Binomial[(3n-3)/4,(n-1)/4]/((n+1)(n+3))-Switch[Mod[n,8],1,2Binomial[(3n-3)/8,(n-1)/8]/(n+3),5,2Binomial[(3n-7)/8,(n+3)/8]/(n-1),,0],,0],{n,60}] (* Robert A. Russell, Mar 22 2024 *)

Formula

If n=2m+1 then (1/2)*(A047750(m) - A047753(n) - A047751(n)), otherwise 0.
G.f.: (2*(G(z^4)-1)/z - z*G(z^4) + 2z*G(z^4)^2 - z*G(z^8) - z^5*G(z^8)^2) / 2, where G(z) = 1 + z*G(z)^3 is the g.f. for A001764. - Robert A. Russell, Mar 22 2024

A047773 Number of dissectable polyhedra with n tetrahedral cells and symmetry of type D.

Original entry on oeis.org

0, 0, 0, 1, 0, 0, 1, 1, 0, 2, 3, 0, 3, 5, 0, 7, 11, 0, 12, 23, 0, 30, 55, 0, 55, 114, 0, 143, 272, 0, 273, 588, 0, 728, 1428, 0, 1428, 3156, 0, 3876, 7750, 0, 7752, 17427, 0, 21318, 43263, 0, 43263, 98516, 0, 120175, 246672, 0, 246675, 567281, 0
Offset: 1

Views

Author

Keywords

Comments

One of 17 different symmetry types comprising A007173 and A027610 and one of 10 for A371351. Also the number of tetrahedral clusters or polyominoes of the regular tiling with Schläfli symbol {3,3,oo}, both having type D achiral symmetry and n tetrahedral cells. The center of symmetry is the altitude of a tetrahedral cell (32); the order of the symmetry group is 6. An achiral polyomino is identical to its reflection. - Robert A. Russell, Mar 23 2024

Crossrefs

Cf. A007173 (oriented), A027610 (unoriented), A371351 (achiral), A001764 (rooted), A047749 (type U), A047750 (type V), A047751 (type K), A047764 (type Q).

Programs

  • Mathematica
    Table[Switch[Mod[n,6],1,If[1==n,0,3Binomial[(n-1)/2,(n-1)/6]/(n+2)],2,6Binomial[n/2,(n-2)/6]/(n+4)-3Binomial[(n-2)/2,(n-2)/6]/(2n+2)-If[2==Mod[n,12],3Binomial[(n-2)/4,(n-2)/12],6Binomial[(n-4)/4,(n-8)/12]]/(n+4),4,6Binomial[(n-2)/2,(n-4)/6]/(n+2),5,3Binomial[(n+1)/2,(n+1)/6]/(n+4)-Switch[Mod[n,24],5,12Binomial[(n-5)/8,(n-5)/24],17,24Binomial[(n-9)/8,(n-17)/24],,0]/(n+7),,0],{n,60}] (* Robert A. Russell, Mar 23 2024 *)
  • PARI
    /* here U=A047749, V=A047750, K=A047751, and Q=A047764 */
    U(n)={if(n%2,my(m=(n-1)/2);(3*m+1)!/((m+1)!*(2*m+1)!),my(m=n/2);(3*m)!/(m!*(2*m+1)!))};
    V(n)={if(n%2,my(m=(n-1)/2);6*(3*m+2)!/(m!*(2*m+3)!),my(m=n/2);(3*m)!*(5*m+1)/((m+1)!*(2*m+1)!))};
    K(n)={if(n==1,1,if(n<5,0,if(n%12==5,U((n-5)/12),0)))};
    Q(n)={if(n<8,0,if(n%6==2,U((n-2)/6),0))};
    D(n)={if(n<3||n%3==0,0,if(n%3==1,U((n-1)/3),(1/2)*(V((n-2)/3)-2*K(n)-Q(n))))};
    for(k=1,57,print1(D(k),", ")) \\ Hugo Pfoertner, Mar 07 2020

Formula

If n=3m+2 then (1/2)*(A047750(m) - 2*A047751(n) - A047764(n)), if n=3m+1 then A047749(m), otherwise 0.
G.f.: (G(z^6)-1)/z + z*G(z^6) - z + z^2*G(z^6)^2 + z^4*G(z^6)^2 - z^5*G(z^24) - z^17*G(z^24)^2 - (z^2*G(z^6) + z^2*G(z^12) + z^8*G(z^12)^2)/2, where G(z) = 1 + z*G(z)^3 is the g.f. for A001764. - Robert A. Russell, Mar 23 2024

A047754 Number of dissectable polyhedra with n tetrahedral cells and symmetry of type H.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 26, 0, 0, 0, 133, 0, 0, 0, 708, 0, 0, 0, 3861, 0, 0, 0, 21604, 0, 0, 0, 123266, 0, 0, 0, 715221, 0, 0, 0, 4206956, 0, 0, 0, 25032840, 0, 0, 0, 150413348, 0, 0, 0, 911379384, 0, 0, 0, 5562367173, 0, 0, 0, 34164355848
Offset: 1

Views

Author

Keywords

Comments

One of 17 different symmetry types comprising A007173 and A027610 and one of 10 for A371351. Also the number of tetrahedral clusters or polyominoes of the regular tiling with Schläfli symbol {3,3,oo}, both having type H achiral symmetry and n tetrahedral cells. The axis of symmetry is the line joining the centers of opposite edges of a tetrahedral cell (31); the order of the symmetry group is 4. An achiral polyomino is identical to its reflection. - Robert A. Russell, Mar 22 2024

Crossrefs

Cf. A047755.
Cf. A007173 (oriented), A027610 (unoriented), A371351 (achiral), A001764 (rooted), A047751 (type K), A047753 (type I).

Programs

  • Mathematica
    Table[If[1==Mod[n,4],Binomial[(3n-3)/4,(n-1)/4]/(n+1)-If[1==Mod[n,8],2Binomial[(3n-3)/8,(n-1)/8],4Binomial[(3n-7)/8,(n-5)/8]]/(n+3),0],{n,40}] (* Robert A. Russell, Mar 22 2024 *)

Formula

If n=4m+1 then (1/2)*(A001764(m) - A047753(n) - A047751(n)), otherwise 0.
G.f.: z * (G(z^4) - G(z^8) - z^4*G(z^8)^2) / 2, where G(z) = 1 + z*G(z)^3 is the g.f. for A001764. - Robert A. Russell, Mar 22 2024

A047758 Number of chiral pairs of dissectable polyhedra with n tetrahedral cells and symmetry of type G.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 42, 0, 0, 0, 232, 0, 0, 0, 1277, 0, 0, 0, 7183, 0, 0, 0, 41041, 0, 0, 0, 238315, 0, 0, 0, 1402076, 0, 0, 0, 8343804, 0, 0, 0, 50136483, 0, 0, 0, 303790544, 0, 0, 0, 1854115285, 0, 0, 0, 11388104153
Offset: 1

Views

Author

Keywords

Comments

One of 17 different symmetry types comprising A007173 and A027610 and one of 7 for A371350. Also the number of tetrahedral clusters or polyominoes of the regular tiling with Schläfli symbol {3,3,oo}, both having type G chiral symmetry and n tetrahedral cells. The axis of symmetry is a line connecting the centers of opposite edges of a tetrahedral cell (31); the order of the symmetry group is 4. Each member of a chiral pair is a reflection but not a rotation of the other. - Robert A. Russell, Mar 22 2024

Crossrefs

Cf. A047772.
Cf. A007173 (oriented), A027610 (unoriented), A371350 (chiral), A001764 (rooted), A047751 (type K), A047752 (type J), A047753 (type I).

Programs

  • Mathematica
    Table[If[1==Mod[n,4],(2Boole[1==n]+2Binomial[(3n-3)/4,(n-1)/4]/(n+1)-If[1==Mod[n,8],12Binomial[(3n-3)/8,(n-1)/8]/(n+3),12Binomial[(3n-7)/8,(n+3)/8]/(n-1)]-If[5==Mod[n,12],6Binomial[(n-5)/4,(n-5)/12]/(n+1)-If[5==Mod[n,24],36Binomial[(n-5)/8,(n-5)/12],72Binomial[(n-9)/8,(n-17)/24]]/(n+7),0])/6,0],{n,50}] (* Robert A. Russell, Mar 22 2024 *)

Formula

If n=4m+1 then (1/6)*(A001764(m) - 3*A047753(n) - 2*A047752(n) - A047751(n)), otherwise 0.
G.f.: z * (2 + G(z^4) - z^4*G(z^12) - 3 * (G(z^8) + z^4*G(z^8)^2 - z^4*G(z^24) - z^16*G(z^24)^2)) / 6, where G(z) = 1 + z*G(z)^3 is the g.f. for A001764. - Robert A. Russell, Mar 22 2024

A047762 Number of chiral pairs of dissectable polyhedra with n tetrahedral cells and symmetry of type E.

Original entry on oeis.org

0, 0, 0, 0, 1, 0, 6, 0, 32, 0, 176, 0, 952, 0, 5302, 0, 29960, 0, 172536, 0, 1007575, 0, 5959656, 0, 35622384, 0, 214875104, 0, 1306303424, 0, 7995896502, 0, 49236826080, 0, 304799714960, 0, 1895785216039, 0, 11841367945110, 0, 74245791718824
Offset: 1

Views

Author

Keywords

Comments

One of 17 different symmetry types comprising A007173 and A027610 and one of 7 for A371350. Also the number of tetrahedral clusters or polyominoes of the regular tiling with Schläfli symbol {3,3,oo}, both having type E chiral symmetry and n tetrahedral cells. The axis of symmetry connects opposite edge centers of a tetrahedron (31); the order of the symmetry group is 2. Each member of a chiral pair is a reflection but not a rotation of the other. - Robert A. Russell, Mar 22 2024

Crossrefs

Cf. A007173 (oriented), A027610 (unoriented), A371350 (chiral), A001764 (rooted), A047751 (type K), A047752 (type J), A047753 (type I), A047754 (type H), A047758 (type G), A047760 (type F).

Programs

  • Mathematica
    Table[If[OddQ[n],Binomial[(3n-1)/2,(n-1)/2]/(n+1)-If[1==Mod[n,4],Binomial[(3n-3)/4,(n-1)/4]/((n+1))+(4Binomial[(3n+1)/4,(n-1)/4]-If[1==Mod[n,8],4Binomial[(3n-3)/8,(n-1)/8],8Binomial[(3n-7)/8,(n-5)/8]])/(n+3),2Binomial[(3n+3)/4,(n+1)/4]/(n+3)],0]/2,{n,40}] (* Robert A. Russell, Mar 22 2024 *)

Formula

If n=2m+1 then (1/4)*(A047749(n) - 2*A047760(n) - 6*A047758(n) - 2*A047754(n) - 3*A047753(n) - 2*A047752(n) - A047751(n)), otherwise 0.
G.f.: (z^2*G(z^2)^2 - (2+z^2)*G(z^4) - 2*z^2*G(z^4)^2 + 2*(1 + z^2*G(z^8) + z^6*G(z^8)^2)) / (4*z), where G(z) = 1 + z*G(z)^3 is the g.f. for A001764. - Robert A. Russell, Mar 22 2024
Showing 1-10 of 14 results. Next