OFFSET
0,4
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
Yahia Djemmada, Abdelghani Mehdaoui, László Németh, and László Szalay, The Fibonacci-Fubini and Lucas-Fubini numbers, arXiv:2407.04409 [math.CO], 2024. See p. 12.
Index entries for linear recurrences with constant coefficients, signature (3,0,-5,0,3,1).
FORMULA
From Franklin T. Adams-Watters, Feb 03 2006: (Start)
a(n) = (n/(n-2)*a(n-1) + n*(n-1))/((n-2)*(n-3))*a(n-2).
G.f.: x^2*(1+3x+x^3)/(1-x-x^2)^3. (End)
a(n) = Sum_{k=0..n-1} Sum_{i=0..n-1} i * C(n-k-1,k). - Wesley Ivan Hurt, Sep 19 2017
From Colin Barker, Sep 20 2017: (Start)
a(n) = ((-1)*(2^(-1-n)*((1-sqrt(5))^n - (1+sqrt(5))^n)*(-1+n)*n)) / sqrt(5).
a(n) = 3*a(n-1) - 5*a(n-3) + 3*a(n-5) + a(n-6) for n>5. (End)
MATHEMATICA
Array[Fibonacci[#] PolygonalNumber[# - 1] &, 33, 0] (* or *)
LinearRecurrence[{3, 0, -5, 0, 3, 1}, {0, 0, 1, 6, 18, 50}, 33] (* or *)
CoefficientList[Series[x^2*(1 + 3 x + x^3)/(1 - x - x^2)^3, {x, 0, 32}], x] (* Michael De Vlieger, Dec 17 2017 *)
PROG
(MuPAD) numlib::fibonacci(n)*binomial(n, 2) $ n = 0..35; // Zerinvary Lajos, May 09 2008
(PARI) concat(vector(2), Vec(x^2*(1 + 3*x + x^3) / (1 - x - x^2)^3 + O(x^40))) \\ Colin Barker, Sep 20 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
James FitzSimons (cherry(AT)getnet.net), Sep 20 2003
EXTENSIONS
Definition and more terms from Franklin T. Adams-Watters, Feb 03 2006
STATUS
approved