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!)
A014286 a(n) = Sum_{j=0..n} j*Fibonacci(j). 10
0, 1, 3, 9, 21, 46, 94, 185, 353, 659, 1209, 2188, 3916, 6945, 12223, 21373, 37165, 64314, 110826, 190265, 325565, 555431, 945073, 1604184, 2717016, 4592641, 7748859, 13052145, 21950853, 36863494, 61824694, 103559033, 173264921, 289575995, 483474153 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Equals row sums of triangle A143061. - Gary W. Adamson, Jul 20 2008
LINKS
Carlos Alirio Rico Acevedo, Ana Paula Chaves, Double-Recurrence Fibonacci Numbers and Generalizations, arXiv:1903.07490 [math.NT], 2019.
FORMULA
G.f.: x*(1+x^2)/((1-x)*(1-x-x^2)^2).
a(n) = n*F(n+2) - F(n+3) + 2.
Recurrences, from Vladimir Reshetnikov, Oct 28 2015: (Start)
6-term, homogeneous, constant coefficients: a(0) = 0, a(1) = 1, a(2) = 3, a(3) = 9, a(4) = 21, a(n) = 3*a(n-1) - a(n-2) - 3*a(n-3) + a(n-4) + a(n-5).
5-term, non-homogeneous, constant coefficients: a(0) = 0, a(1) = 1, a(2) = 3, a(3) = 9, a(n) = 2*a(n-1) + a(n-2) - 2*a(n-3) - a(n-4) + 2.
(End)
MAPLE
A014286 := proc(n)
add(i*combinat[fibonacci](i), i=0..n) ;
end proc: # R. J. Mathar, Apr 11 2016
MATHEMATICA
Accumulate[Table[Fibonacci[n]*n, {n, 0, 50}]] (* Vladimir Joseph Stephan Orlovsky, Jun 28 2011 *)
a[0] = 0; a[1] = 1; a[2] = 3; a[3] = 9; a[n_] := a[n] = 2 a[n-1] + a[n-2] - 2 a[n-3] - a[n-4] + 2; Table[a[n], {n, 0, 50}] (* Vladimir Reshetnikov, Oct 28 2015 *)
PROG
(Magma) [n*Fibonacci(n+2)-Fibonacci(n+3)+2: n in [0..50]]; // Vincenzo Librandi, Mar 31 2011
(PARI) concat(0, Vec(x*(1+x^2)/((1-x)*(1-x-x^2)^2) + O(x^50))) \\ Altug Alkan, Oct 28 2015
(Sage) [n*fibonacci(n+2)-fibonacci(n+3)+2 for n in (0..50)] # G. C. Greubel, Jun 13 2019
(GAP) List([0..50], n-> n*Fibonacci(n+2)-Fibonacci(n+3)+2) # G. C. Greubel, Jun 13 2019
CROSSREFS
Cf. A000045.
Cf. A143061.
Partial sums of A045925.
Cf. A282464: partial sums of j*Fibonacci(j)^2.
Sequence in context: A062444 A141156 A262197 * A000714 A267226 A273845
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

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 May 5 08:57 EDT 2024. Contains 372264 sequences. (Running on oeis4.)