# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a102435 Showing 1-1 of 1 %I A102435 #2 Mar 30 2012 17:36:00 %S A102435 1,1,3,1,1,8,16,8,1,1,13,54,87,54,13,1,1,18,117,348,501,348,117,18,1, %T A102435 1,23,205,914,2210,2966,2210,914,205,23,1,1,28,318,1910,6658,13980, %U A102435 17895,13980,6658,1910,318,28,1,1,33,456,3461,15945,46648,88425,109391,88425,46648,15945,3461,456,33,1 %N A102435 Triangle read by rows: T(n,k) is the number of k-matchings of the corona L'(n) of the ladder graph L(n)=P_2 X P_n. and the complete graph K(1); in other words, L'(n) is the graph constructed from L(n) by adding for each vertex v a new vertex v' and the edge vv'. %C A102435 Row n contains 2n+1 terms. Row sums yield A102436 T(n,k)=T(n,2n-k). The number of k-matchings of the ladder graph L(n)=P_2 X P_n is given in A046741. %F A102435 P[0]=1, P[1]=1+3t+t^2, P[2]=1+8t+16t^2+8t^3+t^4, P[n]=(1+4t+t^2)P[n-1]+t(1+t)^2*P[n-2]-t^3*P[n-3] for n>=3. G.f.= (1-tz)/[1-(1+4t+t^2)z-t(t+1)^2*z^2+t^3*z^3]. %e A102435 T(2,2)=16 because in the graph L'(2) with vertex set {A,B,C,D,a,b,c,d} and edge set {AB,BC,CD,AD,Aa,Bb,Cc,Dd} we have sixteen 2-matchings. Indeed, each of the edges Aa,Bb,Cc,Dd can be matched with five edges and each of the edges AB,BC,CD,AD can be matched with three edges. Thus we have (4*5+4*3)/2=16 matchings. %e A102435 Triangle begins: %e A102435 1; %e A102435 1,3,1; %e A102435 1,8,16,8,1; %e A102435 1,13,54,87,54,13,1; %p A102435 P[0]:=1: P[1]:=1+3*t+t^2: P[2]:=1+8*t+16*t^2+8*t^3+t^4: for n from 3 to 8 do P[n]:=sort(expand((1+4*t+t^2)*P[n-1]+t*(1+t)^2*P[n-2]-t^3*P[n-3])) od: for n from 0 to 8 do seq(coeff(t*P[n],t^k),k=1..2*n+1) od; # yields sequence in triangular form %Y A102435 Cf. A102436, A046741. %K A102435 nonn,tabf %O A102435 0,3 %A A102435 _Emeric Deutsch_, Jan 08 2005 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE