login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A331123 Triangular array read by rows. T(n,k) is the number of simple unlabeled graphs with n vertices whose components belong to exactly k distinct isomorphism classes. 0
1, 2, 3, 1, 8, 3, 22, 12, 116, 38, 2, 854, 181, 9, 11125, 1176, 45, 261083, 13351, 233, 1, 11716594, 287048, 1513, 13, 1006700566, 12281514, 15707, 77, 164059830598, 1031031446, 310050, 498, 50335907869220, 166110813984, 12681157, 3585, 6, 29003487462848916, 50667148763414, 1045586096, 37005, 57, 31397381142761241984, 29104659809235092, 167233146488, 684742, 462 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Product_{k>=1} (y/(1-x^k) - y + 1)^A001349(k).
EXAMPLE
Triangle begins:
1;
2;
3, 1;
8, 3;
22, 12;
116, 38, 2;
854, 181, 9;
11125, 1176, 45;
261083, 13351, 233, 1;
11716594, 287048, 1513, 13;
T(4,2)=3 because we have *-* * * , *-*-* * , a triangle with an isolated point.
MATHEMATICA
Needs["Combinatorica`"]; max = 10;
A000088 = Table[NumberOfGraphs[n], {n, 0, max}];
f[x_] = 1 - Product[1/(1 - x^k)^a[k], {k, 1, max}];
a[0] = a[1] = a[2] = 1; coes = CoefficientList[Series[f[x], {x, 0, max}], x];
sol = Solve[Thread[Rest[coes + A000088] == 0]];
c = Drop[Table[a[n], {n, 0, max}] /. sol // Flatten, 1];
Map[Select[#, # > 0 &] &, Drop[CoefficientList[ Series[Product[(y/(1 - x^k) - y + 1)^c[[k]], {k, 1, max}], {x, 0, max}], {x, y}], 1]] // Grid (* after code by Jean-François Alcover in A001349 *)
CROSSREFS
Cf. A217955.
Sequence in context: A147865 A266614 A175314 * A182223 A011152 A078298
KEYWORD
nonn,tabf
AUTHOR
Geoffrey Critzer, Jan 10 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 20:05 EDT 2024. Contains 371254 sequences. (Running on oeis4.)