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!)
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; text; 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
PROG
(Haskell)
import Data.List (inits)
a141169 n k = a141169_tabl !! n !! k
a141169_row n = a141169_tabl !! n
a141169_tabl = tail $ inits a000045_list
a141169_list = concat $ a141169_tabl
-- Reinhard Zumkeller, Aug 24 2015, Mar 21 2011
CROSSREFS
Sequence in context: A039802 A126726 A143656 * A343887 A215075 A287417
KEYWORD
nonn,tabl
AUTHOR
Reinhard Zumkeller, Mar 21 2011
STATUS
approved

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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)