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!)
A106740 Triangle read by rows: greatest common divisors of pairs of Fibonacci numbers greater than 1: T(n, k) = gcd(Fibonacci(n), Fibonacci(k)). 1

%I #11 Sep 18 2021 04:22:54

%S 2,1,3,1,1,5,2,1,1,8,1,1,1,1,13,1,3,1,1,1,21,2,1,1,2,1,1,34,1,1,5,1,1,

%T 1,1,55,1,1,1,1,1,1,1,1,89,2,3,1,8,1,3,2,1,1,144,1,1,1,1,1,1,1,1,1,1,

%U 233,1,1,1,1,13,1,1,1,1,1,1,377,2,1,5,2,1,1,2,5,1,2,1,1,610

%N Triangle read by rows: greatest common divisors of pairs of Fibonacci numbers greater than 1: T(n, k) = gcd(Fibonacci(n), Fibonacci(k)).

%H G. C. Greubel, <a href="/A106740/b106740.txt">Rows n = 3..52 of the triangle, flattened</a>

%F T(n, k) = gcd(A000045(n), A000045(k)) for n >= 3 and 3 <= k <= n.

%F T(n, 3) = abs(A061347(n)).

%F T(n, 4) = A093148(n-1).

%F T(n, n) = A000045(n).

%F From _G. C. Greubel_, Sep 11 2021: (Start)

%F T(n, 3) = A131534(n-2).

%F T(n, 5) = A060904(n).

%F T(n, 6) = A010125(n).

%F T(n, n-1) = T(n, n-2) = A000012(n).

%F T(n, n-3) = A093148(n-5).

%F T(n, n-4) = A093148(n-5).

%F T(n, n-5) = A060904(n-5).

%F T(n, n-6) = A010125(n-6). (End)

%e Triangle begins as:

%e 2;

%e 1, 3;

%e 1, 1, 5;

%e 2, 1, 1, 8;

%e 1, 1, 1, 1, 13;

%e 1, 3, 1, 1, 1, 21;

%e 2, 1, 1, 2, 1, 1, 34;

%e 1, 1, 5, 1, 1, 1, 1, 55;

%e 1, 1, 1, 1, 1, 1, 1, 1, 89;

%e 2, 3, 1, 8, 1, 3, 2, 1, 1, 144;

%e 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 233;

%e 1, 1, 1, 1, 13, 1, 1, 1, 1, 1, 1, 377;

%e 2, 1, 5, 2, 1, 1, 2, 5, 1, 2, 1, 1, 610;

%t T[n_, k_]:= GCD[Fibonacci[n], Fibonacci[k]];

%t Table[T[n, k], {n,3,18}, {k,3,n}]//Flatten (* _G. C. Greubel_, Sep 11 2021 *)

%o (Sage)

%o def T(n,k): return gcd(fibonacci(n), fibonacci(k))

%o flatten([[T(n,k) for k in (3..n)] for n in (3..18)]) # _G. C. Greubel_, Sep 11 2021

%Y Cf. A000012, A000045, A010125, A060904, A061347, A093148, A131534.

%K nonn,tabl

%O 3,1

%A _Reinhard Zumkeller_, May 15 2005

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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)