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-3 of 3 results.

A323939 Number of unbranched tri-4-catafusenes under the symmetry point group C_{2v} as a function of the number of hexagons (see Cyvin et al. (1996) for precise definition).

Original entry on oeis.org

0, 2, 5, 10, 22, 28, 65, 60, 172, 110, 461, 182, 1314, 280, 3977, 408, 12504, 570, 40021, 770, 128814, 1012, 414481, 1300, 1330052, 1638, 4253341, 2030, 13553978, 2480, 43049433, 2992, 136317872, 3570, 430471077, 4218, 1355976262, 4940, 4261630689, 5740, 13366013020, 6622
Offset: 3

Views

Author

N. J. A. Sloane, Feb 09 2019

Keywords

Comments

From Petros Hadjicostas, May 25 2019: (Start)
According to the Schoenflies notation used in Chemistry, the point group C_{2v} is the cyclic group C_2 "with the addition of" 2 "mirror planes containing the axis of rotation (vertical planes)" (see the Wikipedia article about the Schoenflies notation).
According to the Wikipedia article about Molecular symmetry, a simple description of typical geometry of this group is "angular (H2O) or see-saw (SF4)" (where SF4 = sulfur tetrafluoride).
According to Cyvin et al. (1996, p. 496), a catafusene is a "simply connected catacondensed polyhex". "It is a system consisting of congruent regular hexagons, where any two hexagons either share exactly one edge or are disjointed". "A tri-4-catafusene is generated by contraction of exactly three of its hexagons to tetragons" (see p. 499).
In general (see p. 496), "any alpha-q-catafusene (q = 3-5) can be generated from a catafusene on converting alpha of its hexagons to q-gons by contraction". Here, obviously, alpha = 3 and q = 4.
Here, a(n) is the number of (non-equivalent) unbranched tri-4-catafusenes under the symmetry point group C_{2v}, where n = number of polygons (also known as "rings") in the unbranched tri-4-catafusenes. (Hence, n - 3 is the total number of the remaining hexagons since 3 of the original hexagons became tetragons.) In the paper, the letter r is used to denote the number of polygons rather than the letter n (see p. 496).
The numbers (a(n): n >= 3) = (a(r): r >= 3) appear in Table 1 on p. 500 of Cyvin et al. (1996) under the point group C_{2v}.
In the paper, a(n) is denoted by M_r (p. 500) and is called the total number of "mirror-symmetrical (C_{2v}) systems" (here r = n). It is decomposed into the sum C_r + L_r, where C_r is the number of "centrosymmetrical (C_{2h}) systems" (p. 499) and L_r = (1/2)*binomial(r, 3) - (1/8)*(1-(-1)^r)*(r-1) (see Eq. (15) on p. 499). The numbers L_r count some kind of symmetry described on p. 499 of the paper, but it is unclear what they exactly count.
The point group C_{2h} mentioned above (with the centrosymmetrical systems) is the cyclic group C_2 "with the addition of a mirror (reflection) plane perpendicular to the axis of rotation (horizontal plane)" (see the Wikipedia articles about Molecular symmetry and the Schoenflies notation).
Unfortunately, the letter C is used for two different purposes in the paper: to denote various point groups in three dimensions and to denote the number of non-equivalent systems of contracted catafusenes under some kind of symmetry.
The numbers (C_r: r >= 0), which apparently appear in Table 1 (p. 500) under the point group C_{2h} (see above), satisfy C_{2*i} = 0 and C_{2*i+3} = (1/2)*Sum_{1 <= j <= i} j*a_{i+1,j} (see Eq. (17), p. 500), where the double array a_{i,j} appears on p. 498 (Section 5) of the paper. We have a_{i,j} = binomial(i-1, j-1)*2^(i-j) = A038207(i-1, j-1) for i, j >= 1 (see Eq. (32), p. 502 in the paper).
Putting the above information together, we can easily prove the formulas for a(n) that appear below in the FORMULA section.
Note that the notation for the current sequence a(n) should not be confused with the double array a_{i,j} defined on p. 498 of the paper.
(End)

Crossrefs

Programs

  • Mathematica
    a[n_] := (1/24) (3((-1)^n - 1) (n - 1) + 2 n (n - 1) (n - 2)+ ((-1)^(n + 1) + 1) (-3n + 3^((n - 3)/2) (n + 3) + 3));
    a /@ Range[3, 44] (* Jean-François Alcover, Oct 24 2019 *)
  • PARI
    concat(0, Vec(x^4*(2 + x - 14*x^2 - x^3 + 22*x^4 - 3*x^5 + 2*x^6 - x^7) / ((1 - x)^4*(1 + x)^2*(1 - 3*x^2)^2) + O(x^40))) \\ Colin Barker, May 30 2019

Formula

From Petros Hadjicostas, May 26 2019: (Start)
a(n) = L(n) + C(n) for n >= 3, where L(n) = (1/2)*binomial(n, 3) - (1/8)*(1-(-1)^n)*(n-1) and C(n) = (1/24)*(1 - (-1)^n)*((n + 3)*3^((n-3)/2) - 3*(n-1)).
a(2*m) = binomial(2*m, 3)/2 = A006331(m - 1) for m >= 2, and a(2*m + 1) = binomial(2*m + 1, 3)/2 + (m + 2)*3^m/18 - m for m >= 1.
(End)
From Colin Barker, May 28 2019: (Start)
G.f.: x^4*(2 + x - 14*x^2 - x^3 + 22*x^4 - 3*x^5 + 2*x^6 - x^7) / ((1 - x)^4*(1 + x)^2*(1 - 3*x^2)^2).
a(n) = 2*a(n-1) + 7*a(n-2) - 16*a(n-3) - 14*a(n-4) + 44*a(n-5) + 2*a(n-6) - 48*a(n-7) + 15*a(n-8) + 18*a(n-9) - 9*a(n-10) for n>12.
(End)

Extensions

Name edited by Petros Hadjicostas, May 26 2019
More terms from Petros Hadjicostas, May 26 2019

A323940 Number of nonisomorphic systems (isomers) for the unsymmetrical schemes (group C_s) for unbranched tri-4-catafusenes as a function of the number of hexagons (see Cyvin et al. (1996) for precise definition).

Original entry on oeis.org

0, 1, 8, 52, 244, 1093, 4490, 17952, 69304, 262385, 973916, 3562532, 12856716, 45880933, 162085694, 567578784, 1971766704, 6801381633, 23309759728, 79421199860, 269160256356, 907726205221, 3047449152562, 10188384019072, 33930769372904
Offset: 3

Views

Author

N. J. A. Sloane, Feb 09 2019

Keywords

Comments

See the comments of sequences A323939, A323941, and A323942 for explanations. - Petros Hadjicostas, May 26 2019

Crossrefs

Programs

  • Maple
    # Calculates a(r) = AA(r), where r = n is the number of hexagons.
    # Crude numbers:
    JJ := proc(i) sum(binomial(j + 1, 3)*binomial(i - 2, j - 1)*2^(i - 1 - j), j = 1 .. i - 1); end proc;
    # Linearly annelated systems of D_{2h} symmetry:
    DD := proc(r) 1/4*(1 - (-1)^r)*(r - 1); end proc;
    # Linearly annelated systems of C_{2v} symmetry:
    LL := proc(r) 1/2*binomial(r, 3) - (1/8 - 1/8*(-1)^r)*(r - 1); end proc;
    # Centrosymmetrical (C_{2h}) systems:
    CC := proc(n) 1/24*(1 - (-1)^n)*((3 + n)*3^(1/2*n - 3/2) - 3*n + 3); end proc;
    # Total mirror-symmetrical (C_{2v}) systems:
    MM := proc(n) CC(n) + LL(n); end proc;
    # Unsymmetrical (C_s) systems:
    AA := proc(r) 1/4*(JJ(r) - DD(r) - 2*CC(r) - 2*MM(r)); end proc;
    # Generate sequence:
    for m from 3 to 100 do AA(m); end do; # Petros Hadjicostas, May 26 2019
  • Mathematica
    LinearRecurrence[{14, -71, 116, 259, -1246, 1013, 2520, -5187, 594, 5931, -4428, -1215, 2430, -729}, {0, 1, 8, 52, 244, 1093, 4490, 17952, 69304, 262385, 973916, 3562532, 12856716, 45880933}, 100] (* from the g.f., Georg Fischer, Nov 07 2019 *)

Formula

a(n) = (1/8) * (1 - (-1)^n) * ((n - 1) - (n + 3) * 3^((n - 5)/2)) + (1/8) * (n^2 + 11 * n + 12) * (n - 2) * 3^(n - 6) - (1/4) * binomial(n, 3) for n >= 3. - Petros Hadjicostas, May 26 2019
G.f.: x^4*(1 -6*x +11*x^2 -32*x^3 +182*x^4 -346*x^5 -122*x^6 +950*x^7 -831*x^8 +336*x^9 -297*x^10 +90*x^11) / ( (1+x)^2*(3*x^2-1)^2*(3*x-1)^4*(x-1)^4 ). - R. J. Mathar, Jul 25 2019

Extensions

Name edited by Petros Hadjicostas, May 26 2019
More terms using various equations in Cyvin et al. (1996) from Petros Hadjicostas, May 26 2019

A323942 Irregular triangle read by rows giving the total number of isomers (nonisomorphic systems) of unbranched k-4-catafusenes.

Original entry on oeis.org

1, 1, 1, 2, 3, 3, 1, 4, 7, 9, 3, 1, 10, 23, 29, 16, 5, 1, 25, 69, 99, 62, 27, 5, 1, 70, 229, 351, 275, 132, 39, 7, 1, 196, 731, 1249, 1121, 643, 221, 55, 7, 1, 574, 2385, 4437, 4584, 2997, 1278, 367, 72, 9, 1, 1681, 7657, 15597, 18012, 13458, 6678, 2322, 540, 93, 9, 1
Offset: 2

Views

Author

N. J. A. Sloane, Feb 09 2019

Keywords

Comments

From Petros Hadjicostas, May 26 2019: (Start)
Let I(r, k) be the total number of isomers (nonisomorphic systems) of unbranched k-4-catafusenes, which are generated from catafusenes by converting k of its r hexagons to tetragons. According to Cyvin et al. (1996), for r >= k, we have I(r, k) = 1/4 *(binomial(r, k) + (r - 2)! * (r^2 + (4 * k - 1) * r + 4 * k * (k - 2)) * 3^(r - k - 2)/(k! * (r - k)!) + (2 + (-1)^k - (-1)^r) * (binomial(floor(r/2), floor(k/2)) + 2 * binomial(floor(r/2) - 1, floor(k/2) - 1)) * 3^(floor(r/2) - floor(k/2) - 1)). See Eq. (48) on p. 503 in the paper.
Letting k = 0 - 10, we get the eleven columns of Table 2 on p. 501 of Cyvin et al. (1996). (We need r >= max(k, 2) because the number of hexagons r should be greater than or equal to the number of converted polygons k.)
(End)

Examples

			Triangle begins (rows start at n = 2 and columns at k = 0):
     1,    1,     1;
     2,    3,     3,     1;
     4,    7,     9,     3,     1;
    10,   23,    29,    16,     5,    1;
    25,   69,    99,    62,    27,    5,    1;
    70,  229,   351,   275,   132,   39,    7,   1;
   196,  731,  1249,  1121,   643,  221,   55,   7,  1;
   574, 2385,  4437,  4584,  2997, 1278,  367,  72,  9, 1;
  1681, 7657, 15597, 18012, 13458, 6678, 2322, 540, 93, 9, 1;
  ...
		

Crossrefs

Column k = 0 is A001998. Column k = 3 is A323941.

Formula

For the element T(n, k) in row n >= 2 and column k >= 0 (such that max(k, 2) <= n), we have T(n, k) = I(r = n, k), where I(r, k) is given above in the comments. - Petros Hadjicostas, May 26 2019

Extensions

Name edited by Petros Hadjicostas, May 26 2019
Showing 1-3 of 3 results.