A298338 a(n) = a(n-1) + a(n-2) + a([n/2]), where a(0) = 1, a(1) = 1, a(2) = 1.
1, 1, 1, 3, 5, 9, 17, 29, 51, 85, 145, 239, 401, 657, 1087, 1773, 2911, 4735, 7731, 12551, 20427, 33123, 53789, 87151, 141341, 228893, 370891, 600441, 972419, 1573947, 2548139, 4123859, 6674909, 10801679, 17481323, 28287737, 45776791, 74072259, 119861601
Offset: 0
Links
- Clark Kimberling, Table of n, a(n) for n = 0..1000
- Evangelos G. Filothodoros, Strongly coupled fermions in odd dimensions and the running cut-off Lambda_d, arXiv:2306.14652 [hep-th], 2023.
Programs
-
Mathematica
a[0] = 1; a[1] = 1; a[2] = 1; a[n_] := a[n] = a[n - 1] + a[n - 2] + a[Floor[n/2]]; Table[a[n], {n, 0, 30}] (* A298338 *)
Comments