OFFSET
0,3
COMMENTS
These counts allow the mirror image as an isomorphism.
Using the indexing convention DGM(0) = P_2.
a(6) has 136 decimal digits and a(7) has 412 decimal digits. - Andrew Howroyd, Mar 03 2026
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..7
Eric Weisstein's World of Mathematics, Dorogovtsev-Goltsev-Mendes Graph.
Eric Weisstein's World of Mathematics, Planar Embedding.
FORMULA
a(n) = (b(n)^3 + 2*b(n) + 3*c(n)*b(n))/12 for n >= 2, where b(n) = Product_{k=1..n} k^(3^(n-k)), c(n) = Product_{k=1..n} k^((3^(n-k)+1)/2). - Andrew Howroyd, Mar 03 2026
PROG
(PARI) a(n) = if(n<2, 1, my(b=prod(k=2, n, k^(3^(n-k))), c=prod(k=2, n, k^((3^(n-k)+1)/2))); (b^3 + 2*b + 3*c*b)/12) \\ Andrew Howroyd, Mar 03 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Mar 02 2026
EXTENSIONS
a(4) onward from Andrew Howroyd, Mar 03 2026
STATUS
approved
