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

A019988 Number of ways of embedding a connected graph with n edges in the square lattice.

Original entry on oeis.org

1, 2, 5, 16, 55, 222, 950, 4265, 19591, 91678, 434005, 2073783, 9979772, 48315186, 235088794, 1148891118, 5636168859, 27743309673
Offset: 1

Views

Author

Keywords

Comments

It is assumed that all edges have length one. - N. J. A. Sloane, Apr 17 2019
These are referred to as 'polysticks', 'polyedges' or 'polyforms'. - Jack W Grahl, Jul 24 2018
Number of connected subgraphs of the square lattice (or grid) containing n length-one line segments. Configurations differing only a rotation or reflection are not counted as different. The question may also be stated in terms of placing unit toothpicks in a connected arrangement on the square lattice. - N. J. A. Sloane, Apr 17 2019
The solution for n=5 features in the card game Digit. - Paweł Rafał Bieliński, Apr 17 2019

References

  • Brian R. Barwell, "Polysticks," Journal of Recreational Mathematics, 22 (1990), 165-175.

Crossrefs

If only translations (but not rotations) are factored, consider fixed polyedges (A096267).
If reflections are considered different, we obtain the one-sided polysticks, counted by (A151537). - Jack W Grahl, Jul 24 2018
Cf. A001997, A003792, A006372, A059103, A085632, A056841 (tree-like), A348095 (with cycles), A348096 (refined by symmetry), A181528.
See A336281 for another version.
6th row of A366766.

Formula

A348095(n) + A056841(n+1) = a(n). - R. J. Mathar, Sep 30 2021

Extensions

More terms from Brendan Owen (brendan_owen(AT)yahoo.com), Feb 20 2002
a(18) from John Mason, Jun 01 2023

A306892 Isomorphism classes of connected 2-regular digraphs on n nodes, allowing multiarcs and loops.

Original entry on oeis.org

1, 1, 2, 5, 14, 50, 265, 1601, 11984, 101884
Offset: 0

Views

Author

R. J. Mathar, Mar 15 2019

Keywords

Comments

The graphs are directed, connected and have indegree=outdegree=2 at each node. Multiarcs (connecting two nodes with the same sense of heading) and loops (edges connecting a node to itself) are permitted.
The sequence of the same family of graphs which are not necessarily connected is A006372 (the Euler transform of this sequence).

Examples

			On n=1 node, the graph is the node with two edges looping back to the node.
On n=2 nodes, the graph is either having two pairs of edges (4 edges in total) linking one node to the other, or a loop at each node and two edges (different senses) from one node to the other.
		

Crossrefs

Cf. A306827 (no loops).

Extensions

a(8) added by R. J. Mathar, Apr 08 2019
a(9) added by R. J. Mathar, Apr 15 2019

A006373 Numbers of terms in expressions for coefficients of Euler-Lagrange tensors in terms of Riemann-Christoffel curvature tensor and two of its contractions (viz., the Ricci curvature tensor and the Riemann curvature scalar) for n-dimensional differentiable manifolds having a general linear connection.

Original entry on oeis.org

1, 2, 7, 26, 115, 596
Offset: 0

Views

Author

C. C. Briggs (ccb104(AT)vm.cac.psu.edu)

Keywords

Comments

The six known terms of this sequence coincide with the first six terms of A167551. - Johannes W. Meijer, Nov 12 2009

Crossrefs

A045900 Hypothetical numbers of terms in general expressions for coefficients of Lovelock Lagrangians.

Original entry on oeis.org

1, 1, 3, 8, 25, 85, 318, 1234, 4884, 19458, 77727, 310761, 1242853, 4971151, 19884270, 79536639, 318145993, 1272583241, 5090332042, 20361326983, 81445306447, 325781223902, 1303124893253, 5212499570050, 20849998276525, 83399993101506, 333599972400353
Offset: 0

Views

Author

C. C. Briggs (ccb104(AT)psu.edu)

Keywords

Comments

Hypothetical extension of sequence A006372.

Crossrefs

Programs

  • Mathematica
    p = PartitionsP;
    a[n_] := a[n] = If[n < 4, {1, 1, 3, 8}[[n+1]], a[n-3] - 3*a[n-2] + 3*a[n-1] - p[n-3] + 3*p[n-2] - 3*p[n-1] + p[n] + 2^(2*(n-3) + 1)];
    Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Feb 24 2019 *)

Formula

a(n+3) = 3*a(n+2) - 3*a(n+1) + a(n) + p(n+3) - 3*p(n+2) + 3*p(n+1) - p(n) + 2^(2*n + 1); a(n+4) = 7*a(n+3) - 15*a(n+2) + 13*a(n+1) - 4*a(n) + p(n+4) - 7*p(n+3) + 15*p(n+2) - 13*p(n+1) + 4*p(n); where p(n) is the partition function (i.e. number of partitions of n, A000041) and where p(0) = 1.
a(n) ~ 2^(2*n+1) / 27. - Vaclav Kotesovec, Jul 05 2025

Extensions

More terms from Jean-François Alcover, Feb 24 2019
Showing 1-4 of 4 results.