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

A380241 Array read by antidiagonals: T(n,k) is the number of rooted (2k)-regular planar maps with n vertices, n >= 0, k >= 0.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 5, 9, 1, 1, 1, 14, 100, 54, 1, 1, 1, 42, 1225, 3000, 378, 1, 1, 1, 132, 15876, 171500, 110000, 2916, 1, 1, 1, 429, 213444, 10001880, 30012500, 4550000, 24057, 1, 1, 1, 1430, 2944656, 591666768, 7981500240, 5987493750, 204000000, 208494, 1, 1
Offset: 0

Views

Author

Andrew Howroyd, Jan 22 2025

Keywords

Comments

The zeroth column is included by convention only for consistency with the first row sequences.
The case for regular planar maps of odd valency is more complicated and without simple closed form formulas, so not presented in this sequence. See the references for additional information.

Examples

			Array begins:
====================================================================
n\k | 0  1      2          3               4                   5 ...
----+---------------------------------------------------------------
  0 | 1  1      1          1               1                   1 ...
  1 | 1  1      2          5              14                  42 ...
  2 | 1  1      9        100            1225               15876 ...
  3 | 1  1     54       3000          171500            10001880 ...
  4 | 1  1    378     110000        30012500          7981500240 ...
  5 | 1  1   2916    4550000      5987493750       7304332956480 ...
  6 | 1  1  24057  204000000   1302227368750    7310748066293952 ...
  7 | 1  1 208494 9690000000 301107909375000 7794097754539041792 ...
  ...
		

Crossrefs

Columns 0..3 are A000012 twice, A000168, A380242.
Rows 0..3 are A000012, A000108, A060150, A380243.
Cf. A269920.

Programs

  • PARI
    T(n,k)=if(k==0, 1, 2*binomial(2*k-1,k)^n*(n*k)!/(n!*(n*k - n + 2)!))

Formula

T(n,k) = 2*binomial(2*k-1, k)^n*(n*k)!/(n!*(n*k - n + 2)!) for k > 0.

A380242 Number of rooted 6-regular planar maps with n vertices.

Original entry on oeis.org

1, 5, 100, 3000, 110000, 4550000, 204000000, 9690000000, 480700000000, 24667500000000, 1300650000000000, 70122000000000000, 3851316000000000000, 214878980000000000000, 12151776800000000000000, 695297229000000000000000, 40193385270000000000000000, 2344614140750000000000000000
Offset: 0

Views

Author

Andrew Howroyd, Jan 22 2025

Keywords

Crossrefs

Column k=3 of A380241.

Programs

  • PARI
    a(n) = 2*10^n*(3*n)!/(n!*(2*n + 2)!)

Formula

a(n) = 2*10^n*(3*n)!/(n!*(2*n + 2)!).
Showing 1-2 of 2 results.