login
A134508
Row sums of triangle A134507.
1
1, 2, 5, 11, 22, 42, 77, 138, 243, 423, 730, 1252, 2137, 3634, 6161, 10419, 17582, 29614, 49797, 83610, 140191, 234767, 392690, 656136, 1095217, 1826402, 3043037, 5065883, 8426758, 14006898, 23265725, 38618922, 64062987, 106206519, 175972426
OFFSET
1,2
FORMULA
a(n) = A000071(n+2) + A029907(n) - n. [Corrected by Charles R Greathouse IV, Feb 13 2018]
EXAMPLE
a(4) = 11 = sum of row 4 terms of triangle A134507 = (4 + 5 + 1 + 1).
a(4) = 11 = A000071(6) + A029907(4) - 4 = (7 + 8 - 4).
PROG
(PARI) a(n)=fibonacci(n+2) + ((n+4)*fibonacci(n)+2*n*fibonacci(n-1))/5 - n - 1 \\ Charles R Greathouse IV, Feb 13 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Gary W. Adamson, Oct 28 2007
EXTENSIONS
More terms from Charles R Greathouse IV, Feb 13 2018
STATUS
approved