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
KEYWORD
nonn,fini,full
AUTHOR
Jim Nastos, Nov 30 2025
STATUS
approved
