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!)
A175137 Irregular triangle T(n,k) read by rows: number of orbits of size 2^k on Dyck n-paths. 0

%I #2 Mar 30 2012 17:40:18

%S 1,2,3,1,6,2,1,12,7,4,26,23,11,2,59,71,41,8,138,224,151,30,332,709,

%T 550,114,814,2253,1993,406,16,2028,7189,7211,1564,64,5118,23045,26221,

%U 6010,240,13054,74213,95583,23062,912,33598,239979,349145,88530,3504,87143

%N Irregular triangle T(n,k) read by rows: number of orbits of size 2^k on Dyck n-paths.

%H David Callan, <a href="http://www.combinatorics.org/Volume_14/Abstracts/v14i1r28.html">A bijection on Dyck paths and its cycle structure</a>, El. J. Combinat. 14 (2007) # R28

%e Triangle starts at row n=1

%e 1;

%e 2;

%e 3,1;

%e 6,2,1;

%e 12,7,4;

%e 26,23,11,2;

%e 59,71,41,8;

%e 138,224,151,30;

%p Fx := proc(k) local ak ; ak := (2*x)^(2^k+1) ; (1-ak-(1-4*x+(ak*x*(2-ak))/(1-x))^(1/2))/(2*x-ak) ; end proc: ff := [] : for k from 0 to 5 do ff := [op(ff), taylor(Fx(k),x=0,18)] ; end do : F := proc(n,k) global ff ; coeftayl(op(k+1,ff),x=0,n) ; end proc: T := proc(n,k) global ff ; if k = 0 then F(n,0) ; else (F(n,k)-F(n,k-1))/2^k ; end if; end proc: for n from 1 to 17 do for k from 0 to 5 do if T(n,k) <> 0 then printf("%d,",T(n,k)) ; fi; end do ; printf("\n") ; end do ;

%Y Cf. A127384 (row sums).

%K nonn,tabf

%O 1,2

%A _R. J. Mathar_, Feb 21 2010

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 27 14:35 EDT 2024. Contains 374647 sequences. (Running on oeis4.)