A132923 Triangle read by rows: T(n, k) = Fibonacci(k) + n - k.
1, 2, 1, 3, 2, 2, 4, 3, 3, 3, 5, 4, 4, 4, 5, 6, 5, 5, 5, 6, 8, 7, 6, 6, 6, 7, 9, 13, 8, 7, 7, 7, 8, 10, 14, 21, 9, 8, 8, 8, 9, 11, 15, 22, 34, 10, 9, 9, 9, 10, 12, 16, 23, 35, 55, 11, 10, 10, 10, 11, 13, 17, 24, 36, 56, 89, 12, 11, 11, 11, 12, 14, 18, 25, 37, 57, 90, 144
Offset: 1
Examples
First few rows of the triangle: 1; 2, 1; 3, 2, 2; 4, 3, 3, 3; 5, 4, 4, 4, 5; 6, 5, 5, 5, 6, 8; 7, 6, 6, 6, 7, 9, 13; ...
Links
- David A. Corneth, Table of n, a(n) for n = 1..10011
Programs
-
Mathematica
T[n_,k_]:=n+Fibonacci[k]-k;Table[T[n,k],{n,12},{k,n}]//Flatten (* James C. McMahon, Mar 09 2025 *)
-
PARI
T(n, k) = fibonacci(k) + n - k \\ David A. Corneth, Feb 14 2023
Formula
T(k, k) = Fibonacci(k). T(k + n, k) = T(k, k) + n. - David A. Corneth, Feb 14 2023
Extensions
More terms from and new name by David A. Corneth, Feb 14 2023
Comments