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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A141169 Triangle of Fibonacci numbers, read by rows: T(n,k) = A000045(k), 0<=k<=n. 3
0, 0, 1, 0, 1, 1, 0, 1, 1, 2, 0, 1, 1, 2, 3, 0, 1, 1, 2, 3, 5, 0, 1, 1, 2, 3, 5, 8, 0, 1, 1, 2, 3, 5, 8, 13, 0, 1, 1, 2, 3, 5, 8, 13, 21, 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 0, 1, 1, 2, 3, 5, 8, 13, 21 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,10

COMMENTS

T(n,0) = A000004(n); T(n,n) = A000045(n);

central terms: T(2*n,n) = A000045(n);

sums of rows: Sum(T(n,k): 0<=k<=n) = A000071(n+2);

alternating sums of rows: Sum(T(n,k)*(-1)^k: 0<=k<=n) = A119282(n);

T(n,k) + T(n,n-k) = A094570(n,k).

LINKS

Reinhard Zumkeller, Rows n=0..125 of triangle, flattened

PROG

(Haskell)

a141169 n k = a141169_tab !! n !! k

a141169_tab = iterate fib [0] where fib rs = 0 : zipWith (+) rs (1 : rs)

a141169_flatList = concat $ a141169_tab

CROSSREFS

Sequence in context: A039802 A126726 A143656 * A180177 A104578 A180243

Adjacent sequences:  A141166 A141167 A141168 * A141170 A141171 A141172

KEYWORD

nonn,tabl

AUTHOR

Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Mar 21 2011

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 07:13 EST 2012. Contains 205698 sequences.