login
A391133
The number of connected planar graphs on n unlabeled vertices with connected planar complement.
1
1, 0, 0, 1, 8, 68, 454, 1962
OFFSET
1,5
COMMENTS
This sequence is finite and there are no additional terms.
PROG
(SageMath)
def a(n):
count = 0
for G in graphs(n):
C = G.complement()
if G.is_planar() and G.is_connected() and C.is_planar() and C.is_connected():
count += 1
return count
for n in range(1, 10): print(a(n))
CROSSREFS
Cf. A391132 (not necessarily connected).
Sequence in context: A050841 A208947 A296670 * A263477 A249390 A190510
KEYWORD
nonn,fini,full
AUTHOR
Jim Nastos, Nov 30 2025
STATUS
approved