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

A175891 Number of lattice paths from (0,0) to (n,n) using steps S={(k,0),(0,k)|0

Original entry on oeis.org

1, 1, 5, 29, 185, 1226, 8553, 61642, 455337, 3429002, 26229691, 203237747, 1591820564, 12582288455, 100241042348, 804090987555, 6488942266564, 52644171729304, 429123506792664, 3512829202462126, 28866426741057006, 238031465396515626, 1969001793889730276
Offset: 0

Views

Author

Eric Werley, Dec 05 2010

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(x, y) option remember; `if`(y>x or y<0, 0,
          `if`(x=0, 1, add(b(x-j, y)+b(x, y-j), j=1..4)))
        end:
    a:= n-> b(n$2):
    seq(a(n), n=0..35);  # Alois P. Heinz, May 16 2017
  • Mathematica
    b[x_, y_] := b[x, y] = If[y > x || y < 0, 0, If[x == 0, 1, Sum[b[x - j, y] + b[x, y - j], {j, 1, 4}]]];
    a[n_] := b[n, n];
    a /@ Range[0, 35] (* Jean-François Alcover, Nov 11 2020, after Alois P. Heinz *)

Formula

a(n) ~ c * d^n / n^(3/2), where d = 8.84734830841870961487278801886633962039798... is the real root of the equation 4 + 4*d - 8*d^2 - 8*d^3 + d^4 = 0 and c = 0.31736815701423989167651891084531024477617724724822148387263881713... - Vaclav Kotesovec, May 30 2017

A007028 Number of bipartite polyhedral graphs with n nodes.

Original entry on oeis.org

1, 0, 1, 1, 5, 5, 21, 40, 176, 500, 2053, 7532, 31206, 124552, 521332, 2167599, 9183879, 38965327, 166956753, 718004565, 3107450143, 13502835176, 58956369552, 258398671525
Offset: 8

Views

Author

Keywords

References

  • M. B. Dillencourt, Polyhedra of small orders and their Hamiltonian properties. Tech. Rep. 92-91, Info. and Comp. Sci. Dept., Univ. Calif. Irvine, 1992.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Programs

  • plantri
    for n in {8..25}; do plantri -bpu ${n}; done # Sean A. Irvine, Apr 29 2016

Extensions

a(23)-a(31) computed using plantri by Sean A. Irvine, Apr 29 2016

A119501 Number of isomorphism classes of 3-connected simple planar graphs (convex polytopes) where isomorphism does not allow reflection.

Original entry on oeis.org

0, 0, 0, 1, 2, 8, 45, 419, 4798, 62754, 872411, 12728018, 192324654, 2991463239, 47663036427, 775158142233, 12831576165782
Offset: 1

Views

Author

Brendan McKay, Jun 02 2006

Keywords

Comments

If reflection is allowed, the counts are A000944.

Crossrefs

Cf. A005470.

A111357 Numbers of planar triangulations with minimum degree 5 and without separating 3-cycles - that is 3-cycles where the interior and exterior contain at least one vertex.

Original entry on oeis.org

1, 0, 1, 1, 3, 4, 12, 23, 73, 191, 649, 2054, 7209, 24963, 89376, 320133, 1160752, 4218225, 15414908, 56474453, 207586410, 764855802, 2825168619, 10458049611, 38795658003, 144203518881, 537031911877, 2003618333624, 7488436558647
Offset: 12

Views

Author

Gunnar Brinkmann, Nov 07 2005

Keywords

Examples

			The icosahedron is the smallest triangulation with minimum degree 5 and it doesn't contain any separating triangles. Examples can easily be seen as 2D and 3D pictures using the program CaGe cited above.
		

Crossrefs

A262322 The number of 4-connected triangulations of the triangle with n inner vertices.

Original entry on oeis.org

1, 0, 0, 1, 1, 3, 13, 47, 217, 1041, 5288, 27844, 150608, 831229
Offset: 0

Views

Author

Moritz Firsching, Sep 18 2015

Keywords

Comments

Also the number of 4-connected simplicial polyhedra with n nodes with one marked face.
Values obtained by generating 4-connected simplicial polyhedra with plantri, marking each face in the polyhedron, and then sorting out isomorphic ones.

Crossrefs

Previous Showing 21-25 of 25 results.