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.

Previous Showing 11-15 of 15 results.

A292881 Number of n-step closed paths on the E6 lattice.

Original entry on oeis.org

1, 0, 72, 1440, 54216, 2134080, 93993120, 4423628160, 219463602120, 11341793393280
Offset: 0

Views

Author

Samuel Savitz, Sep 26 2017

Keywords

Comments

Calculated by brute force computational enumeration.
The moments of the imaginary part of the suitably normalized E6 lattice Green's function.

Examples

			The 2-step walks consist of hopping to one of the 72 minimal vectors of the E6 lattice and then back to the origin.
		

Crossrefs

Cf. A126869 (Linear A1 lattice), A002898 (Hexagonal A2), A002899 (FCC A3), A271432 (D4), A271650 (D5), A271651 (D6), A292882 (E7), A271670 (D7), A292883 (E8), A271671 (D8).

Formula

Summed combinatorial expressions and recurrence relations for this sequence exist, but have not been determined. These would allow one to write a differential equation or hypergeometric expression for the E6 lattice Green's function.

A292882 Number of n-step closed paths on the E7 lattice.

Original entry on oeis.org

1, 0, 126, 4032, 228690, 14394240, 1020623940, 78353170560, 6393827197170
Offset: 0

Views

Author

Samuel Savitz, Sep 26 2017

Keywords

Comments

Calculated by brute force computational enumeration.
The moments of the imaginary part of the suitably normalized E7 lattice Green's function.

Examples

			The 2-step walks consist of hopping to one of the 126 minimal vectors of the E7 lattice and then back to the origin.
		

Crossrefs

Cf. A126869 (Linear A1 lattice), A002898 (Hexagonal A2), A002899 (FCC A3), A271432 (D4), A271650 (D5), A292881 (E6), A271651 (D6), A271670 (D7), A292883 (E8), A271671 (D8).

Formula

Summed combinatorial expressions and recurrence relations for this sequence exist, but have not been determined. These would allow one to write a differential equation or hypergeometric expression for the E7 lattice Green's function.

A292883 Number of n-step closed paths on the E8 lattice.

Original entry on oeis.org

1, 0, 240, 13440, 1260720, 137813760, 17141798400, 2336327078400, 341350907713200
Offset: 0

Views

Author

Samuel Savitz, Sep 26 2017

Keywords

Comments

Calculated by brute force computational enumeration.
The moments of the imaginary part of the suitably normalized E8 lattice Green's function.

Examples

			The 2-step walks consist of hopping to one of the 240 minimal vectors of the E8 lattice and then back to the origin.
		

Crossrefs

Cf. A126869 (Linear A1 lattice), A002898 (Hexagonal A2), A002899 (FCC A3), A271432 (D4), A271650 (D5), A292881 (E6), A271651 (D6), A292882 (E7), A271670 (D7), A271671 (D8).

Formula

Summed combinatorial expressions and recurrence relations for this sequence exist, but have not been determined. These would allow one to write a differential equation or hypergeometric expression for the E8 lattice Green's function.

A328735 Constant term in the expansion of (x + y + z + 1/x + 1/y + 1/z + x*y + y*z + z*x + 1/(x*y) + 1/(y*z) + 1/(z*x) + x*y*z + 1/(x*y*z))^n.

Original entry on oeis.org

1, 0, 14, 72, 882, 8400, 95180, 1060080, 12389650, 146472480, 1767391164, 21581516880, 266718438756, 3327025429728, 41849031952728, 530135326392672, 6757845419895570, 86619827323917888, 1115719258312182524, 14434274832755201424, 187477238295444829732
Offset: 0

Views

Author

Seiichi Manyama, Oct 26 2019

Keywords

Crossrefs

Column k=4 of A328748.
Sum_{i=0..n} (-2)^(n-i)*binomial(n,i)*Sum_{j=0..i} binomial(i,j)^m: A126869 (m=2), A002898 (m=3), this sequence (m=4), A328751 (m=5).

Programs

  • Mathematica
    Table[Sum[(-2)^(n-i)*Binomial[n,i] * Sum[Binomial[i,j]^4, {j,0,i}], {i,0,n}], {n,0,20}] (* Vaclav Kotesovec, Mar 20 2023 *)
  • PARI
    {a(n) = polcoef(polcoef(polcoef((-2+(1+x)*(1+y)*(1+z)+(1+1/x)*(1+1/y)*(1+1/z))^n, 0), 0), 0)}
    
  • PARI
    {a(n) = sum(i=0, n, (-2)^(n-i)*binomial(n, i)*sum(j=0, i, binomial(i, j)^4))}

Formula

a(n) = Sum_{i=0..n} (-2)^(n-i)*binomial(n,i)*Sum_{j=0..i} binomial(i,j)^4.
From Vaclav Kotesovec, Mar 20 2023: (Start)
Recurrence: n^3*a(n) = 2*(n-1)*n*(2*n - 1)*a(n-1) + 112*(n-1)^3*a(n-2) + 184*(n-2)*(n-1)*(2*n - 3)*a(n-3) + 336*(n-3)*(n-2)*(n-1)*a(n-4).
a(n) ~ 2^(n-4) * 7^(n + 3/2) / (Pi^(3/2) * n^(3/2)). (End)

A342800 Number of self-avoiding polygons on a 3-dimensional cubic lattice where each walk consists of steps with incrementing length from 1 to n.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 24, 72, 0, 0, 1704, 5184, 0, 0, 193344, 600504, 0, 0, 34321512, 141520752, 0, 0, 9205815672, 37962945288, 0, 0
Offset: 1

Views

Author

Scott R. Shannon, Mar 21 2021

Keywords

Comments

This sequence gives the number of self-avoiding polygons (closed-loop self-avoiding walks) on a 3D cubic lattice where the walk starts with a step length of 1 which then increments by 1 after each step up until the step length is n. Like A334720 and A335305 only n values corresponding to even triangular numbers can form closed loops. All possible paths are counted, including those that are equivalent via rotation and reflection.

Examples

			a(1) to a(6) = 0 as no self-avoiding closed-loop walk is possible.
a(7) = 24 as there is one walk which forms a closed loop which can be walked in 24 different ways on a 3D cubic lattice. These walks, and those for n(8) = 72, are purely 2-dimensional. See A334720 for images of these walks.
a(11) = 1704. These walks consist of 120 purely 2-dimensional walks and 1584 3-dimensional walks. One of these 3-dimensional walks is:
.
                                /|
                               / |                        z  y
                              /  |                        | /
                        7 +y /   |                        |/
                            /    | 8 -z                   |----- x
             6 +x          /     |
  |---.---.---.---.---.---/      |               9 +x
  |                              |---.---.---.---.---.---.---.---.---/
  | 5 +z                                                            /
  |                                                                /
  |---.---.---.---/                                               /
        4 -x     /  3 +y                                         /
                /                                               /  10 -y
                | 2 +z                                         /
                |                                             /
                | 1 +z                                       /
                X---.---.---.---.---.---.---.---.---.---.---/
                                     11 -x
.
		

Crossrefs

Previous Showing 11-15 of 15 results.