A075148 Table E(n,k) (listed antidiagonalwise as E(0,0), E(1,0), E(0,1), E(2,0), E(1,1), E(0,2), ...) where E(n,k) is F(n+k) for all even n and L(n+k) for all odd n. F(n) and L(n) are the n-th Fibonacci (A000045) and Lucas (A000032) numbers respectively.
0, 1, 1, 1, 3, 1, 4, 2, 4, 2, 3, 7, 3, 7, 3, 11, 5, 11, 5, 11, 5, 8, 18, 8, 18, 8, 18, 8, 29, 13, 29, 13, 29, 13, 29, 13, 21, 47, 21, 47, 21, 47, 21, 47, 21, 76, 34, 76, 34, 76, 34, 76, 34, 76, 34, 55, 123, 55, 123, 55, 123, 55, 123, 55, 123, 55, 199, 89, 199, 89, 199, 89, 199
Offset: 0
Programs
Formula
E(n, k) = (fibonacci(n+k-(n mod 2))+fibonacci(n+k+(n mod 2)))/(2-(n mod 2))