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!)
A063726 a(n) = gcd(1 + Fibonacci(n+1), 1 + Fibonacci(n)). 3
1, 2, 1, 1, 2, 3, 1, 2, 1, 7, 2, 5, 1, 18, 1, 13, 2, 47, 1, 34, 1, 123, 2, 89, 1, 322, 1, 233, 2, 843, 1, 610, 1, 2207, 2, 1597, 1, 5778, 1, 4181, 2, 15127, 1, 10946, 1, 39603, 2, 28657, 1, 103682, 1, 75025, 2, 271443, 1, 196418, 1, 710647, 2, 514229, 1, 1860498, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Conjectures from Colin Barker, Jan 30 2018: (Start)
G.f.: (1 + 2*x + x^2 + x^3 - x^4 - 3*x^5 - 3*x^6 - 3*x^7 - 5*x^8 - x^9 + x^10 + 3*x^11 + 2*x^12 + x^13) / ((1 - x)*(1 + x)*(1 - x + x^2)*(1 + x + x^2)*(1 + x^2 - x^4)*(1 - x^2 - x^4)).
a(n) = 3*a(n-4) + a(n-6) - a(n-8) - 3*a(n-10) + a(n-14) for n>13.
(End)
MAPLE
with(combinat): seq(gcd(1+fibonacci(n+1), 1+fibonacci(n)), n=0..65); # Muniru A Asiru, Oct 09 2018
MATHEMATICA
Table[GCD[Fibonacci[n], Fibonacci[n+1]+1], {n, 5!}] (* Vladimir Joseph Stephan Orlovsky, Apr 03 2010 *)
PROG
(PARI) j=[]; for(n=0, 75, j=concat(j, gcd(1+fibonacci(n+1), 1+fibonacci(n) ))); j
(PARI) { g=0; f=1; for (n=0, 1000, write("b063726.txt", n, " ", gcd(1 + f, 1 + g)); h=g; g=f; f+=h ) } \\ Harry J. Smith, Aug 28 2009
(Magma) [GCD(1 + Fibonacci(n+1), 1 + Fibonacci(n)): n in [0..50]]; // G. C. Greubel, Oct 08 2018
(GAP) List([0..65], n->Gcd(1+Fibonacci(n+1), 1+Fibonacci(n))); # Muniru A Asiru, Oct 09 2018
CROSSREFS
Sequence in context: A048207 A359164 A105810 * A290267 A240750 A181118
KEYWORD
nonn
AUTHOR
Jason Earls, Aug 11 2001
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 11 09:34 EDT 2024. Contains 372392 sequences. (Running on oeis4.)