login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A129711 Triangle read by rows: T(n,k) is the number of Fibonacci binary words of length n and starting with exactly k 01's (0<=k<=floor(n/2)). A Fibonacci binary word is a binary word having no 00 subword. 0
1, 2, 2, 1, 3, 2, 5, 2, 1, 8, 3, 2, 13, 5, 2, 1, 21, 8, 3, 2, 34, 13, 5, 2, 1, 55, 21, 8, 3, 2, 89, 34, 13, 5, 2, 1, 144, 55, 21, 8, 3, 2, 233, 89, 34, 13, 5, 2, 1, 377, 144, 55, 21, 8, 3, 2, 610, 233, 89, 34, 13, 5, 2, 1, 987, 377, 144, 55, 21, 8, 3, 2, 1597, 610, 233, 89, 34, 13, 5, 2, 1 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

Row n has 1+floor(n/2) terms. Row sums are the Fibonacci numbers (A000045). Sum(k*T(n,k), k>=0)=F(n+1)-1=A000071(n+1).

FORMULA

T(n,k)=F(n-2k+1) if 2k+1<n, where F(j) are the Fibonacci numbers (F(0)=0, F(1)=1); T(2k+1,k)=2; T(n,k)=0 if 2k>n. G.f.=G(t,z)=(1+z)(1-z^2)/[(1-z-z^2)(1-tz^2)].

EXAMPLE

T(7,2)=3 because we have 0101110, 0101111 and 0101101.

Triangle starts:

1;

2;

2,1;

3,2;

5,2,1;

8,3,2;

13,5,2,1;

MAPLE

with(combinat): T:=proc(n, k) if n=2*k+1 then 2 elif n<2*k then 0 else fibonacci(n-2*k+1) fi end: for n from 0 to 18 do seq(T(n, k), k=0..floor(n/2)) od; # yields sequence in triangular form

CROSSREFS

Cf. A000045, A000071.

Sequence in context: A159803 A058741 A074945 * A030454 A145141 A103360

Adjacent sequences:  A129708 A129709 A129710 * A129712 A129713 A129714

KEYWORD

nonn,tabf

AUTHOR

Emeric Deutsch (deutsch(AT)duke.poly.edu), May 12 2007

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 04:59 EST 2012. Contains 205694 sequences.