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!)
A201864 a(n) = ((F(n-1)+F(n-2))-1)/2 if F(n) is odd, otherwise a(n) = ((F(n-1)+F(n-2))-2)/2, where F(n) = A000045(n) is the n-th Fibonacci number. 1

%I #46 Aug 29 2023 11:14:41

%S 0,0,0,1,2,3,6,10,16,27,44,71,116,188,304,493,798,1291,2090,3382,5472,

%T 8855,14328,23183,37512,60696,98208,158905,257114,416019,673134,

%U 1089154,1762288,2851443,4613732,7465175,12078908,19544084,31622992,51167077,82790070

%N a(n) = ((F(n-1)+F(n-2))-1)/2 if F(n) is odd, otherwise a(n) = ((F(n-1)+F(n-2))-2)/2, where F(n) = A000045(n) is the n-th Fibonacci number.

%C See also similar sequence A130578.

%C a(n) is the number of segments connected contained in a graph with, F(n-1) is the number of vertex, and F(n-2) is the numbers of sides.

%H Vincenzo Librandi, <a href="/A201864/b201864.txt">Table of n, a(n) for n = 1..1000</a>

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

%F G.f.: x^4*(1+x)/((1-x)(1+x+x^2)(1-x-x^2)). - _Alois P. Heinz_, Dec 13 2011

%F a(n) = (1/2)*(A000045(n)-A131534(n+1)). - _Bruno Berselli_, Dec 14 2011

%F a(n) = F(n) - ceiling(F(n-1)/2) - ceiling(F(n-2)/2). - _Chunqing Liu_, Aug 21 2023

%p a:= n-> (Matrix(5, (i, j)-> `if`(i=j-1, 1, `if`(i=5,

%p [-1, -1, 1, 1, 1][j], 0)))^n. <<-1, 0, 0, 0, 1>>)[1, 1]:

%p seq(a(n), n=1..50); # _Alois P. Heinz_, Dec 13 2011

%t CoefficientList[Series[x^3*(1+x)/((1-x)(1+x+x^2)(1-x-x^2)),{x,0,30}],x] (* _Vincenzo Librandi_, Mar 20 2012 *)

%o (Magma) [IsOdd(Fibonacci(n)) select (Fibonacci(n)-1)/2 else Fibonacci(n)/2-1: n in [1..41]]; // _Bruno Berselli_, Dec 14 2011

%Y Cf. A000045, A131534.

%K nonn,easy

%O 1,5

%A _Giovanni Teofilatto_, Dec 06 2011

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 25 11:06 EDT 2024. Contains 371967 sequences. (Running on oeis4.)