login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A086926 Product of Fibonacci and (shifted) triangular numbers. 2

%I #19 Dec 18 2017 03:05:29

%S 0,0,1,6,18,50,120,273,588,1224,2475,4895,9504,18174,34307,64050,

%T 118440,217192,395352,714951,1285350,2298660,4091241,7250221,12797568,

%U 22507500,39452725,68942718,120132558,208776974,361937400,626015085,1080441264

%N Product of Fibonacci and (shifted) triangular numbers.

%H Colin Barker, <a href="/A086926/b086926.txt">Table of n, a(n) for n = 0..1000</a>

%H <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (3,0,-5,0,3,1).

%F From _Franklin T. Adams-Watters_, Feb 03 2006: (Start)

%F a(n) = A000045(n)*A000217(n-1) = A000045(n)*n*(n-1)/2.

%F a(n) = (n/(n-2)*a(n-1) + n*(n-1))/((n-2)*(n-3))*a(n-2).

%F G.f.: x^2*(1+3x+x^3)/(1-x-x^2)^3. (End)

%F a(n) = Sum_{k=0..n-1} Sum_{i=0..n-1} i * C(n-k-1,k). - _Wesley Ivan Hurt_, Sep 19 2017

%F From _Colin Barker_, Sep 20 2017: (Start)

%F a(n) = ((-1)*(2^(-1-n)*((1-sqrt(5))^n - (1+sqrt(5))^n)*(-1+n)*n)) / sqrt(5).

%F a(n) = 3*a(n-1) - 5*a(n-3) + 3*a(n-5) + a(n-6) for n>5. (End)

%t Array[Fibonacci[#] PolygonalNumber[# - 1] &, 33, 0] (* or *)

%t LinearRecurrence[{3, 0, -5, 0, 3, 1}, {0, 0, 1, 6, 18, 50}, 33] (* or *)

%t CoefficientList[Series[x^2*(1 + 3 x + x^3)/(1 - x - x^2)^3, {x, 0, 32}], x] (* _Michael De Vlieger_, Dec 17 2017 *)

%o (MuPAD) numlib::fibonacci(n)*binomial(n,2) $ n = 0..35; // _Zerinvary Lajos_, May 09 2008

%o (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

%Y Cf. A000045, A000217, A045925.

%K nonn,easy

%O 0,4

%A James FitzSimons (cherry(AT)getnet.net), Sep 20 2003

%E Definition and more terms from _Franklin T. Adams-Watters_, Feb 03 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 10:46 EDT 2024. Contains 371779 sequences. (Running on oeis4.)