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.
%I A343872 #10 Jan 01 2022 15:40:18 %S A343872 1,1,2,5,11,26,68,177,497,1475,4608,15188,52778,192339,733676,2917722, %T A343872 12052138,51517308,227068741,1028492568 %N A343872 Number of planar graphs with n edges and no isolated nodes. %C A343872 The first difference between this sequence and A000664 is for n=9 edges where we see K_{3,3}, the "utility graph". %F A343872 Euler transform of A046091. %t A343872 A046091 = Cases[Import["https://oeis.org/A046091/b046091.txt", "Table"], {_, _}][[All, 2]]; %t A343872 etr[f_] := Module[{b}, b[n_] := b[n] = If[n == 0, 1, Sum[Sum[d f[d], {d, Divisors[j]}] b[n - j], {j, 1, n}]/n]; b]; %t A343872 a = etr[A046091[[# + 1]]&]; %t A343872 a /@ Range[0, Length[A046091]-1] (* _Jean-François Alcover_, Jan 01 2022 *) %Y A343872 Cf. A000664, A005470, A039735, A046091. %K A343872 nonn,more %O A343872 0,3 %A A343872 _Andrew Howroyd_, May 05 2021