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

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

0,7

COMMENTS

Row sums are the Fibonacci numbers (A000045). Sum(k*T(n,k), 0<=k<=n)=F(n+3)-2=A001911(n).

FORMULA

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

EXAMPLE

T(6,2)=3 because we have 110110, 110111, 110101.

Triangle starts:

1;

1,2;

1,1,1;

2,1,1,1;

3,2,1,1,1;

5,3,2,1,1,1;

8,5,3,2,1,1,1;

MAPLE

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

CROSSREFS

Cf. A000045, A001911.

Sequence in context: A123320 A054123 A119269 * A096669 A096591 A115568

Adjacent sequences:  A129710 A129711 A129712 * A129714 A129715 A129716

KEYWORD

nonn,tabl

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 16 09:27 EST 2012. Contains 205904 sequences.