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

A380615 Triangle read by rows: T(n,k) is the number of sensed combinatorial maps with n edges and k vertices, 1 <= k <= n + 1.

Original entry on oeis.org

1, 1, 1, 2, 2, 1, 5, 8, 5, 2, 18, 38, 34, 14, 3, 105, 275, 288, 154, 42, 6, 902, 2614, 3102, 1959, 705, 140, 14, 9749, 30346, 39242, 27898, 11956, 3142, 473, 34, 127072, 415360, 573654, 446078, 217000, 68544, 13886, 1670, 95, 1915951, 6513999, 9484003, 7911844, 4230802, 1523176, 373188, 60614, 5969, 280
Offset: 0

Views

Author

Andrew Howroyd, Jan 28 2025

Keywords

Comments

By duality, also the number of sensed combinatorial maps with n edges and k faces.

Examples

			Triangle begins:
n\k |      1       2       3       4       5      6      7     8   9
----+----------------------------------------------------------------
  0 |      1
  1 |      1,      1
  2 |      2,      2,      1;
  3 |      5,      8,      5,      2;
  4 |     18,     38,     34,     14,      3;
  5 |    105,    275,    288,    154,     42,     6;
  6 |    902,   2614,   3102,   1959,    705,   140,    14;
  7 |   9749,  30346,  39242,  27898,  11956,  3142,   473,   34;
  8 | 127072, 415360, 573654, 446078, 217000, 68544, 13886, 1670, 95;
  ...
		

Crossrefs

Row sums are A170946.
Main diagonal is A002995(n+1).
Second diagonal gives A380237.
Columns 1..3 are A007769, A380618, A380619.
Cf. A053979 (rooted), A379430 (planar), A380616 (unsensed), A380617 (achiral).

Programs

  • PARI
    InvEulerMTS(p)={my(n=serprec(p, x)-1, q=log(p), vars=variables(p)); sum(i=1, n, moebius(i)*substvec(q + O(x*x^(n\i)), vars, apply(v->v^i, vars))/i)}
    b(k,r)={if(k%2, if(r%2, 0, my(j=r/2); k^j*(2*j)!/(j!*2^j)), sum(j=0, r\2, binomial(r, 2*j)*k^j*(2*j)!/(j!*2^j)))}
    C(k,r,y)={my(p=sumdiv(k,d,eulerphi(k/d)*y^d)/k); sum(i=0, r, abs(stirling(r,i,1))*p^i)/r!}
    S(n,k,y)={sum(r=0, 2*n\k, if(k*r%2==0, x^(k*r/2)*b(k,r)*C(k,r,y)), O(x*x^n))}
    G(n,y='y)={prod(k=1, 2*n, S(n,k,y))}
    T(n)={[Vecrev(p/y) | p<-Vec(y+InvEulerMTS(G(n)))]}
    { my(A=T(10)); for(i=1, #A, print(A[i])) }

A380619 Number of sensed combinatorial maps with n edges and 3 vertices.

Original entry on oeis.org

1, 5, 34, 288, 3102, 39242, 573654, 9484003, 175036065, 3568736050, 79697415569, 1935425955944, 50794210191337, 1432898704970561, 43244525933606928, 1390448844972918928, 47455314531812444788, 1713525997666221196906, 65266335503957271588042, 2615307907226341637828915
Offset: 2

Views

Author

Andrew Howroyd, Jan 28 2025

Keywords

Comments

By duality, also the number of sensed combinatorial maps with n edges and 3 faces.

Crossrefs

Column 3 of A380615.
Cf. A380618 (2 vertices), A380621 (unsensed).

Programs

  • PARI
    \\ Needs G(), InvEulerMTS from A380615.
    seq(n, k=3)={my(y='y); Vec(polcoef(InvEulerMTS(G(n, y*(1 + O(y^k)))), k, y))}

A380620 Number of unsensed combinatorial maps with n edges and 2 vertices.

Original entry on oeis.org

1, 2, 8, 33, 198, 1571, 16431, 213831, 3288821
Offset: 1

Views

Author

Andrew Howroyd, Jan 28 2025

Keywords

Comments

By duality, also the number of unsensed combinatorial maps with n edges and 2 faces.

Crossrefs

Column 2 of A380616.
Cf. A380239 (planar), A380618 (sensed), A380621 (3 vertices).
Showing 1-3 of 3 results.