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!)
A099766 Triangle read by rows: T(n,k) = number of unbordered binary words of length n and weight k, n >= 0, 0 <= k <= n. 1

%I #9 Jul 17 2020 00:33:49

%S 1,1,1,0,2,0,0,2,2,0,0,2,2,2,0,0,2,4,4,2,0,0,2,4,8,4,2,0,0,2,6,12,12,

%T 6,2,0,0,2,6,18,22,18,6,2,0,0,2,8,24,40,40,24,8,2,0,0,2,8,32,60,80,60,

%U 32,8,2,0,0,2,10,40,92,140,140,92,40,10,2,0,0,2,10,50,128,232

%N Triangle read by rows: T(n,k) = number of unbordered binary words of length n and weight k, n >= 0, 0 <= k <= n.

%H T. Harju and D. Nowotka, <a href="http://oldtucs.abo.fi/publications/attachment.php?fname=TR630.pdf">Counting bordered and primitive words with a fixed weight</a>, TUCS Technical Report, No 630, Turku, November 2004. [This is the triangle U(n,k).]

%H T. Harju and D. Nowotka, <a href="https://doi.org/10.1016/j.tcs.2005.03.040">Counting bordered and primitive words with a fixed weight</a>, Theoret. Comput. Sci. 340 (2005), no. 2, 273-279. [This is the triangle U(n,k).]

%F See Maple code.

%e Triangle begins:

%e .1

%e .1,1

%e .0,2,0

%e .0,2,2,0

%e .0,2,2,2,0

%e .0,2,4,4,2,0

%e .0,2,4,8,4,2,0

%p U:=proc(n,k) option remember; if n < 1 then RETURN(0); fi; if n = 1 then RETURN(1); fi; if n > 1 and k = 0 then RETURN(0); fi; if k > 1 and k >= n then RETURN(0); fi; U(n-1,k)+U(n-1,k-1)-E(n,k); end;

%p E:=proc(n,k) option remember; if n mod 2 = 0 and k mod 2 = 0 then U(n/2,k/2) else 0; fi; end;

%Y Row sums give A003000. Cf. A099768, A102416.

%K nonn,tabl

%O 0,5

%A _N. J. A. Sloane_, Nov 11 2004

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 May 6 13:11 EDT 2024. Contains 372293 sequences. (Running on oeis4.)