A379104 a(n) = third elementary symmetric function of the first n distinct Fibonacci numbers.
6, 61, 389, 2066, 9962, 45594, 202344, 881859, 3801171, 16275292, 69399116, 295177196, 1253532482, 5318285553, 22550198601, 95580699774, 405034367814, 1716140731030, 7270703692340, 30801852323495, 130485697292231, 552764498063256, 2341595675572344
Offset: 3
Keywords
Examples
a(2) = 1*2*3 + 1*2*5 + 1*3*5 + 2*3*5 = 61.
Programs
-
Mathematica
z = 50; w[i_] := Fibonacci[i]; t[n_] := Table[w[i], {i, 2, n}] v[n_] := SymmetricPolynomial[3, t[n]] tt = Table[v[n], {n, 4, 25}]
Formula
a(n) = sum of F(i(1))*F(i(2))*F(i(3)) over all indices i(1)
Extensions
Deleted program and link based on a conjecture. - N. J. A. Sloane, Dec 22 2024
Comments