# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a004110 Showing 1-1 of 1 %I A004110 M1504 #79 Jan 31 2024 04:50:00 %S A004110 1,1,1,2,5,16,78,588,8047,205914,10014882,912908876,154636289460, %T A004110 48597794716736,28412296651708628,31024938435794151088, %U A004110 63533059372622888758054,244916078509480823407040988,1783406527599529094009748567708 %N A004110 Number of n-node unlabeled graphs without endpoints (i.e., no nodes of degree 1). %C A004110 a(n) is also the number of unlabeled mating graphs with n nodes. A mating graph has no two vertices with identical sets of neighbors. - _Tanya Khovanova_, Oct 23 2008 %D A004110 F. Harary, Graph Theory, Wiley, 1969. See illustrations in Appendix 1. %D A004110 F. Harary and E. Palmer, Graphical Enumeration, (1973), compare formula (8.7.11). %D A004110 R. W. Robinson, personal communication. %D A004110 R. W. Robinson, Numerical implementation of graph counting algorithms, AGRC Grant, Math. Dept., Univ. Newcastle, Australia, 1976. %D A004110 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence). %H A004110 Andrew Howroyd, Table of n, a(n) for n = 0..50 (terms 0..26 from R. W. Robinson) %H A004110 David Cook II, Nested colourings of graphs, arXiv preprint arXiv:1306.0140 [math.CO], 2013. %H A004110 Ira M. Gessel and Ji Li, Enumeration of point-determining graphs, J. Combinatorial Theory Ser. A 118 (2011), 591-612. %H A004110 R. J. Mathar, Illustrations for n=1..5 nodes %H A004110 Ronald C. Read, The enumeration of mating-type graphs, Report CORR 89-38, Dept. Combinatorics and Optimization, Univ. Waterloo, 1989. %H A004110 R. W. Robinson, Graphs without endpoints - computer printout %H A004110 N. J. A. Sloane, Illustration of a(0)-a(5) %t A004110 permcount[v_] := Module[{m = 1, s = 0, k = 0, t}, For[i = 1, i <= Length[v], i++, t = v[[i]]; k = If[i > 1 && t == v[[i - 1]], k + 1, 1]; m *= t * k; s += t]; s!/m]; %t A004110 edges[v_] := Sum[GCD[v[[i]], v[[j]]], {i, 2, Length[v]}, {j, 1, i - 1}] + Total[Quotient[v, 2]]; %t A004110 a[n_] := Sum[permcount[p] * 2^edges[p] * Coefficient[Product[1 - x^p[[i]], {i, 1, Length[p]}], x, n - k]/k!, {k, 1, n}, {p, IntegerPartitions[k]}]; a[0] = 1; %t A004110 Table[a[n], {n, 0, 18}] (* _Jean-François Alcover_, Oct 27 2018, after _Andrew Howroyd_ *) %o A004110 (PARI) \\ Compare A000088. %o A004110 permcount(v) = {my(m=1, s=0, k=0, t); for(i=1, #v, t=v[i]; k=if(i>1&&t==v[i-1], k+1, 1); m*=t*k; s+=t); s!/m} %o A004110 edges(v) = {sum(i=2, #v, sum(j=1, i-1, gcd(v[i], v[j]))) + sum(i=1, #v, v[i]\2)} %o A004110 a(n) = {my(s=0); sum(k=1, n, forpart(p=k, s+=permcount(p) * 2^edges(p) * polcoef(prod(i=1, #p, 1-x^p[i]), n-k)/k!)); s} \\ _Andrew Howroyd_, Sep 09 2018 %Y A004110 Row sums of A123551. %Y A004110 Cf. A059166 (n-node connected labeled graphs without endpoints), A059167 (n-node labeled graphs without endpoints), A004108 (n-node connected unlabeled graphs without endpoints), A006024 (number of labeled mating graphs with n nodes), A129584 (bi-point-determining graphs). %Y A004110 If isolated nodes are forbidden, see A261919. %K A004110 nonn %O A004110 0,4 %A A004110 _N. J. A. Sloane_ # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE