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!)
A217859 Triangular array read by rows. T(n,k) is the number of functions on n unlabeled nodes that have exactly k unique components (n >= 1, k >= 1). 0

%I #25 Oct 02 2017 02:17:20

%S 1,3,5,2,12,7,21,25,1,58,63,9,126,178,39,341,466,140,4,867,1253,470,

%T 25,2334,3418,1431,135,6218,9365,4358,544,6,17016,25924,12871,2042,50,

%U 46351,72207,37993,7056,291,127842,202345,111142,23483,1383,4,353297,568822,325359,75701,5754,60

%N Triangular array read by rows. T(n,k) is the number of functions on n unlabeled nodes that have exactly k unique components (n >= 1, k >= 1).

%C Row sums are A001372.

%C T(n,1) = A002861(n) + 1 when n is prime (counts connected functions and the identity function).

%H N. J. A. Sloane, <a href="https://oeis.org/a001372.gif">Illustration of initial terms</a>

%F O.g.f.: Product_{n>=1} ((y*x^n - x^n + 1)/(1 - x^n))^A002861(n).

%e Triangle begins:

%e 1;

%e 3,

%e 5, 2;

%e 12, 7;

%e 21, 25, 1;

%e 58, 63, 9;

%e 126, 178, 39;

%e 341, 466, 140, 4;

%e 867, 1253, 470, 25;

%e 2334, 3418, 1431, 135;

%e 6218, 9365, 4358, 544, 6;

%e 17016, 25924, 12871, 2042, 50;

%e 46351, 72207, 37993, 7056, 291;

%e 127842, 202345, 111142, 23483, 1383, 4;

%e 353297, 568822, 325359, 75701, 5754, 60;

%e T(3,2)=2 because (in the link) the third and the fifth digraphs on 3 nodes are composed of 2 unique components.

%t Needs["Combinatorica`"];

%t nn=30;s[n_,k_]:=s[n,k]=a[n+1-k]+If[n<2 k,0,s[n-k,k]];a[1]=1;a[n_]:=a[n]=Sum[a[i] s[n-1,i] i,{i,1,n-1}]/(n-1);rt=Table[a[i],{i,1,nn}];c=Drop[Apply[Plus,Table[Take[CoefficientList[CycleIndex[CyclicGroup[n],s]/.Table[s[j]->Table[Sum[rt[[i]] x^(k*i),{i,1,nn}],{k,1,nn}][[j]],{j,1,nn}],x],nn],{n,1,30}]],1];CoefficientList[Series[Product[((y x^i +1-x^i)/(1-x^i))^c[[i]],{i,1,nn-1}],{x,0,15}],{x,y}]//Grid

%t (* after code given by _Robert A. Russell_ in A000081 *)

%K nonn,tabf

%O 1,2

%A _Geoffrey Critzer_, Oct 13 2012

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 April 23 19:56 EDT 2024. Contains 371916 sequences. (Running on oeis4.)