A384219 Areas of triangles whose three vertices are consecutive ordered pairs of consecutive odd Fibonacci numbers such that an ordered pair’s y-value is the next ordered pair’s x-value.
2, 6, 24, 104, 442, 1870, 7920, 33552, 142130, 602070, 2550408, 10803704, 45765226, 193864606, 821223648, 3478759200, 14736260450, 62423800998, 264431464440, 1120149658760, 4745030099482, 20100270056686, 85146110326224, 360684711361584, 1527884955772562
Offset: 1
Examples
The first term is created by finding the area of the triangle formed by the ordered pairs (1,1), (1,3), and (3,5), which is 2. The second term is created by finding the area of the triangle formed by the ordered pairs (1,3), (3,5), and (5,13), which is 6. The third term is created by finding the area of the triangle formed by the ordered pairs (3,5), (5,13), and (13,21), which is 24.
Links
- Index entries for linear recurrences with constant coefficients, signature (4,0,4,1).
Programs
-
Maple
a:= n-> (<<0|1|0|0>, <0|0|1|0>, <0|0|0|1>, <1|4|0|4>>^n.<<0, 2, 6, 24>>)[1,1]: seq(a(n), n=1..25); # Alois P. Heinz, May 22 2025
Formula
G.f.: 2*x*(x-1)/((x^2+1)*(x^2+4*x-1)). - Alois P. Heinz, May 22 2025
E.g.f.: (exp(2*x)*(cosh(sqrt(5)*x) + sqrt(5)*sinh(sqrt(5)*x)) - cos(x) + 3*sin(x))/5. - Stefano Spezia, May 25 2025
Comments