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 21-26 of 26 results.

A198806 Number of closed paths of length n whose steps are 14th roots of unity, U_14(n).

Original entry on oeis.org

1, 0, 14, 0, 546, 0, 32900, 10080, 2570050, 2540160, 238935564, 465696000, 25142196156, 76886409600, 2900343069624, 12211317518400, 359067702643650, 1915829643087360, 47006105030584700, 300455419743198720, 6437718469449262996
Offset: 0

Views

Author

Simon Plouffe, Oct 30 2011

Keywords

Comments

U_14(n), (comment in article): For each m >= 1, the sequence (U_m(N)), N >= 0 is P-recursive but is not algebraic when m > 2.

Crossrefs

Programs

  • PARI
    seq(n)={Vec(serlaplace(sum(k=0, n, if(k,2,1)*(x^k*besseli(k, 2*x + O(x^(n-k+1)))/k!)^7)))} \\ Andrew Howroyd, Nov 01 2018

Formula

E.g.f.: BesselI(0,2*x)^7 + 2*Sum_{k>=1} BesselI(k,2*x)^7. - Andrew Howroyd, Nov 01 2018

A353091 Irregular triangle read by rows: T(n, k) is the number of n-step closed walks on the hexagonal lattice having algebraic area k.

Original entry on oeis.org

1, 6, 0, 6, 66, 0, 12, 0, 150, 0, 30, 1020, 0, 420, 0, 84, 0, 6, 0, 3444, 0, 1302, 0, 252, 0, 42, 19890, 0, 11952, 0, 4284, 0, 984, 0, 216, 0, 24, 0, 82062, 0, 42972, 0, 14814, 0, 4248, 0, 990, 0, 216, 0, 18, 449976, 0, 327420, 0, 158970, 0, 57180, 0, 18780, 0, 5190, 0, 1350, 0, 270, 0, 30
Offset: 0

Views

Author

Andrey Zabolotskiy, Apr 22 2022

Keywords

Comments

Rows 0 and 2 have 1 element each; row 1 is empty; for n > 2, we have 0 <= k <= A069813(n).
Rows can be extended to negative k with T(n, -k) = T(n, k). Sums of such extended rows give A002898.

Examples

			The triangle begins:
[1]
[]
[6]
[0, 6]
[66, 0, 12]
[0, 150, 0, 30]
[1020, 0, 420, 0, 84, 0, 6]
[0, 3444, 0, 1302, 0, 252, 0, 42]
[19890, 0, 11952, 0, 4284, 0, 984, 0, 216, 0, 24]
[0, 82062, 0, 42972, 0, 14814, 0, 4248, 0, 990, 0, 216, 0, 18]
[449976, 0, 327420, 0, 158970, 0, 57180, 0, 18780, 0, 5190, 0, 1350, 0, 270, 0, 30]
...
		

Crossrefs

Cf. A069813 (greatest area), A002898 (all closed walks), A352838 (square lattice).
For n > 1, row n seems to end with A109047(n).

A357770 Number of 2n-step closed paths on quasi-regular rhombic (rhombille) lattice starting from a degree-3 node.

Original entry on oeis.org

1, 3, 30, 372, 5112, 74448, 1125408, 17461440, 276193152, 4433878272, 72022049280, 1181146106880, 19524892723200, 324921616773120, 5438136568504320, 91467357685235712, 1545090682931085312, 26199310348842762240, 445746455962332561408, 7606624602795641929728
Offset: 0

Views

Author

Dave R.M. Langers, Oct 12 2022

Keywords

Comments

Paths that return to the same point in a quasi-regular rhombic lattice must always have even length (i.e., 2n) because of parity: degree-3 nodes alternate with degree-6 nodes.

Examples

			a(2)=30, because there are 3*3=9 paths that visit one of three adjacent vertices, return to the origin, and again visit an adjacent vertex and return to the origin; 3*5=15 paths visiting one of five distance-2 vertices that are adjacent to the three adjacent vertices; plus 3*2=6 paths traversing the perimeter of three adjacent rhombi in counterclockwise or clockwise direction; all resulting in a closed path of length 2n=2*2=4.
		

Crossrefs

The accompanying sequences for the number of paths that return to a degree-6 node is A357771.
Similar sequences for square, hexagonal, and honeycomb lattices are A002894, A002898 and A002893.

Programs

  • Mathematica
    a[0] := 1; a[n_] := Sum[Binomial[n, k]*Sum[Binomial[n, j]*Sum[(1/(2^(j+1)))*Binomial[2*i, j]*Binomial[2*i, i]*Binomial[2*(j-i), j-i], {i, 0, j}], {j, 0, n}], {k, 0, n}]; Flatten[Table[a[n], {n, 0, 19}]] (* Detlef Meya, May 20 2024 *)

Formula

a(0) = 1; a(n) = Sum_{k=0..n} (binomial(n, k) * Sum_{j=0..n} (binomial(n, j) * Sum_{i=0..j} ((1/(2^(j + 1)))*binomial(2*i, j)*binomial(2*i, i)*binomial(2*(j-i), j-i)))). - Detlef Meya, May 20 2024

Extensions

More terms from Detlef Meya, May 20 2024

A357771 Number of 2n-step closed paths on quasi-regular rhombic (rhombille) lattice starting from a degree-6 node.

Original entry on oeis.org

1, 6, 60, 744, 10224, 148896, 2250816, 34922880, 552386304, 8867756544, 144044098560, 2362292213760, 39049785446400, 649843233546240, 10876273137008640, 182934715370471424, 3090181365862170624, 52398620697685524480, 891492911924665122816, 15213249205591283859456, 260315328935885892747264
Offset: 0

Views

Author

Dave R.M. Langers, Oct 12 2022

Keywords

Comments

Paths that return to the same point in a quasi-regular rhombic lattice must always have even length (i.e., 2n) because of parity: degree-6 nodes alternate with degree-3 nodes.

Examples

			a(2)=60, because there are 6*6=36 paths that visit one of six adjacent vertices, return to the origin, and again visit an adjacent vertex and return to the origin; plus 6*4=24 paths that pass through one of the six vertices at distance 2, leaving and returning via any of two available paths to that vertex; all resulting in a closed path of length 2n=2*2=4.
		

Crossrefs

The accompanying sequences for the number of paths that return to a degree-3 node is A357770.
Similar sequences for square, hexagonal, and honeycomb lattices are A002894, A002898 and A002893.

Programs

  • Mathematica
    a[n_] := Sum[Binomial[n, k]*Sum[Binomial[n, j]*Sum[(1/(2^j))*Binomial[2*i, j]*Binomial[2*i, i]*Binomial[2*(j-i), j-i],{i,0,j}],{j,0,n}],{k,0,n}]; Flatten[Table[a[n],{n,0,17}]] (* Detlef Meya, May 15 2024 *)
  • PARI
    a(n) = sum(k=0, n, binomial(n, k) * sum(j=0, n, binomial(n, j) * sum(i=0, j, (1/(2^j)*binomial(2*i, j)*binomial(2*i, i)*binomial(2*(j-i), j-i))))); \\ Michel Marcus, May 20 2024

Formula

a(n) = Sum_{k=0..n} (binomial(n, k) * Sum_{j=0..n} (binomial(n, j) * Sum_{i=0..j} ((1/(2^j))*binomial(2*i, j)*binomial(2*i, i)*binomial(2*(j-i), j-i)))). - Detlef Meya, May 15 2024

Extensions

More terms from Detlef Meya, May 15 2024

A357810 Number of n-step closed paths on the Cairo pentagonal lattice graph starting from a degree-4 node.

Original entry on oeis.org

1, 0, 4, 0, 24, 8, 164, 136, 1236, 1704, 10116, 19144, 88616, 205208, 818764, 2155160, 7873440, 22463400, 77954740, 233894600, 788314984, 2440865400, 8095906076, 25569342520, 84107990356, 269034666280
Offset: 0

Views

Author

Dave R.M. Langers, Oct 13 2022

Keywords

Examples

			For n=2, the a(2) = 4 solutions visit one of the four vertices adjacent to the initial vertex, and then return.
For n=5, the a(5) = 8 solutions consist of counterclockwise or clockwise traversals of the circumference of any of the four pentagons that surround the initial vertex.
		

Crossrefs

The accompanying sequences for the number of paths that return to a degree-3 node is A357811.
Similar sequences for square, hexagonal, and honeycomb lattices are A002894, A002898 and A002893.

A357811 Number of n-step closed paths on the Cairo pentagonal lattice graph starting from a degree-3 node.

Original entry on oeis.org

1, 0, 3, 0, 17, 6, 115, 100, 867, 1236, 7117, 13770, 62545, 146866, 579387, 1537920, 5581725, 16002810, 55329435, 166465820, 559913787, 1736268432, 5752600961, 18182999274, 59777071435, 191287075320
Offset: 0

Views

Author

Dave R.M. Langers, Oct 13 2022

Keywords

Examples

			For n=2, the a(2) = 3 solutions visit one of the three vertices adjacent to the initial vertex, and then return.
For n=5, the a(5) = 6 solutions consist of counterclockwise or clockwise traversals of the circumference of any of the three pentagons that surround the initial vertex.
		

Crossrefs

The accompanying sequences for the number of paths that return to a degree-4 node is A357810.
Similar sequences for square, hexagonal, and honeycomb lattices are A002894, A002898 and A002893.
Previous Showing 21-26 of 26 results.