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!)
A260039 Triangle read by rows giving numbers B(n,k) arising in the enumeration of doubly rooted tree maps. 6

%I #30 May 08 2023 09:34:33

%S 1,8,2,72,30,3,720,380,72,4,7780,4690,1245,140,5,89040,58254,19152,

%T 3192,240,6,1064644,734496,279972,60648,7000,378,7,13173216,9416688,

%U 3997584,1046832,162000,13752,560,8,167522976,122687334,56488950,17086608,3285990,382140,24885,792,9

%N Triangle read by rows giving numbers B(n,k) arising in the enumeration of doubly rooted tree maps.

%C See Mullin (1967) for precise definition.

%C What is the sequence 1, 8, 72, 720, 7780, 89040, 1064644, 13173216, 167522976, 2178520080, ... in the leading diagonal?

%H R. C. Mullin, <a href="/A260039/a260039.pdf">On the average activity of a spanning tree of a rooted map</a>, J. Combin. Theory, 3 (1967), 103-121. [Annotated scanned copy] <a href="http://dx.doi.org/10.1016/S0021-9800(67)80001-2">[DOI]</a>

%F T(n,k) = (k+1)*A260040(n,k), n>=1, 0<=k<n.

%F Conjecture: T(n,0) = n*A168452(n-1). - _R. J. Mathar_, Jul 22 2015

%e Triangle begins:

%e 1;

%e 8, 2;

%e 72, 30, 3;

%e 720, 380, 72, 4;

%e ...

%p bEq64 := proc(k,u)

%p (k+1)*(2*u+k)!*(2*u+k+2)!/u!/(u+k+2)!/(u+k+1)!/(u+1)! ;

%p end proc:

%p Eq65 := proc(n,k)

%p add( bEq64(k,u)*bEq64(k,n-k-1-u),u=0..n-k-1) ;

%p end proc:

%p B := proc(n,k)

%p n*Eq65(n,k) ;

%p end proc:

%p for n from 1 to 10 do

%p for k from 0 to n-1 do

%p printf("%a,",B(n,k)) ;

%p end do:

%p printf("\n") ;

%p end do: # _R. J. Mathar_, Jul 22 2015

%t bEq64 [k_, u_] := (k + 1)*(2u + k)!*(2u + k + 2)!/u!/(u + k + 2)!/(u + k + 1)!/(u + 1)!;

%t Eq65[n_, k_] := Sum[bEq64[k, u]*bEq64[k, n - k - 1 - u], {u, 0, n - k - 1}];

%t B[n_, k_] := n*Eq65[n, k];

%t Table[B[n, k], {n, 1, 10}, {k, 0, n - 1}] // Flatten (* _Jean-François Alcover_, May 08 2023, after _R. J. Mathar_ *)

%Y Row sums are A046715. Cf. A260040.

%K nonn,tabl

%O 1,2

%A _N. J. A. Sloane_, Jul 22 2015

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 July 22 23:31 EDT 2024. Contains 374544 sequences. (Running on oeis4.)