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.

A049334 Triangle read by rows: T(n, k) is the number of unlabeled connected planar simple graphs with n >= 1 nodes and 0<=k<=3*n-6 edges.

Original entry on oeis.org

1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 2, 2, 1, 1, 0, 0, 0, 0, 3, 5, 5, 4, 2, 1, 0, 0, 0, 0, 0, 6, 13, 19, 22, 19, 13, 5, 2, 0, 0, 0, 0, 0, 0, 11, 33, 67, 107, 130, 130, 96, 51, 16, 5, 0, 0, 0, 0, 0, 0, 0, 23, 89, 236, 486, 804, 1112, 1211, 1026, 626, 275, 72, 14, 0, 0, 0, 0, 0, 0, 0, 0
Offset: 1

Views

Author

Keywords

Comments

Planar graphs with n >= 3 nodes have at most 3*n-6 edges.

Examples

			n\k 0  1  2  3  4  5  6  7  8  9 10 11 12
--:-- -- -- -- -- -- -- -- -- -- -- -- --
1:  1
2:  0  1
3:  0  0  1  1
4:  0  0  0  2  2  1  1
5:  0  0  0  0  3  5  5  4  2  1
6:  0  0  0  0  0  6 13 19 22 19 13  5  2
		

Crossrefs

Row sums are A003094.
Column sums are A046091.

Programs

  • nauty
    geng -c $n $k:$k | planarg -q | countg -q # Georg Grasegger, Jul 11 2023

Formula

T(n, n-1) = A000055(n) and Sum_{k} T(n, k) = A003094(n) if n>=1. - Michael Somos, Aug 23 2015
log(1 + B(x, y)) = Sum{n>0} A(x^n, y^n) / n where A(x, y) = Sum_{n>0, k>=0} T(n,k) * x^n * y^k and similarly B(x, y) with A039735. - Michael Somos, Aug 23 2015

A046091 Number of connected planar graphs with n edges.

Original entry on oeis.org

1, 1, 1, 3, 5, 12, 30, 79, 227, 709, 2318, 8049, 29372, 112000, 444855, 1833072, 7806724, 34252145, 154342391, 712231465, 3357126655, 16119421175, 78580665333
Offset: 0

Views

Author

Keywords

Comments

Inverse Euler transform of A343872. - Andrew Howroyd, May 05 2021

Examples

			a(3) = 3 since the three connected graphs with three edges are a path, a triangle and a "Y".
The first difference between this sequence and A002905 is for n=9 edges where we see K_{3,3}, the "utility graph".
		

Crossrefs

Row sums of A343873.
Column sums of A049334.

Programs

  • nauty
    # count graphs for the sequence by number of vertices v, sum over v afterwards
    geng -c $v $n:$n | planarg -q | countg -q # Georg Grasegger, Jul 06 2023

Extensions

a(11)-a(19) from Martin Fuller using nauty by Brendan McKay, Mar 07 2015
a(20)-a(22) added by Georg Grasegger, Jul 06 2023
Showing 1-2 of 2 results.