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!)
A094586 Central numbers of the triangle T of all positive differences of distinct Fibonacci numbers. 2

%I #18 Sep 08 2022 08:45:13

%S 1,5,16,47,131,356,953,2529,6676,17567,46135,121016,317201,831053,

%T 2176712,5700303,14926171,39081404,102323209,267896585,701380076,

%U 1836265535,4807451951,12586147632,32951083681,86267253461,225850919488

%N Central numbers of the triangle T of all positive differences of distinct Fibonacci numbers.

%C As T is also the triangle of sums of consecutive distinct Fibonacci numbers, a(n) is such a sum, namely Sum_{j=n+1..2n} Fibonacci(j).

%H Muniru A Asiru, <a href="/A094586/b094586.txt">Table of n, a(n) for n = 1..2000</a>

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

%F a(n) = Fibonacci(2n+2) - Fibonacci(n+2) = A094585(2n-1, n).

%F G.f.: x*(1+x-x^2)/((1-x-x^2)*(1-3*x+x^2)). - _Colin Barker_, Sep 16 2012

%e a(4) = F(10)-F(6) = 55-8 = 47.

%t Table[Sum[Fibonacci[n+i], {i,n}], {n,30}] (* _Zerinvary Lajos_, Jul 12 2009 *)

%t With[{F=Fibonacci}, Table[F[2n+2]-F[n+2], {n,30}]] (* _G. C. Greubel_, Jul 14 2019 *)

%o (GAP) List([1..30],n->Fibonacci(2*n+2)-Fibonacci(n+2)); # _Muniru A Asiru_, Apr 28 2019

%o (PARI) vector(30, n, f=fibonacci; f(2*n+2)-f(n+2)) \\ _G. C. Greubel_, Jul 14 2019

%o (Magma) F:=Fibonacci; [F(2*n+2)-F(n+2): n in [1..30]]; // _G. C. Greubel_, Jul 14 2019

%o (Sage) f=fibonacci; [f(2*n+2)-f(n+2) for n in (1..30)] # _G. C. Greubel_, Jul 14 2019

%Y Cf. A000045, A094585.

%K nonn,easy

%O 1,2

%A _Clark Kimberling_, May 13 2004

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 24 16:56 EDT 2024. Contains 371962 sequences. (Running on oeis4.)