[go: up one dir, main page]

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!)
A111946 Triangle read by rows: T(n,k) = gcd(Fibonacci(n), Fibonacci(k)), 1 <= k <= n. 3
1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 5, 1, 1, 2, 1, 1, 8, 1, 1, 1, 1, 1, 1, 13, 1, 1, 1, 3, 1, 1, 1, 21, 1, 1, 2, 1, 1, 2, 1, 1, 34, 1, 1, 1, 1, 5, 1, 1, 1, 1, 55, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 89, 1, 1, 2, 3, 1, 8, 1, 3, 2, 1, 1, 144, 1, 1, 1, 1, 1, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,6
COMMENTS
The function T(n, k) is defined for all integers n, k but only the values for 1 <= k <= n as a triangular array are listed here.
LINKS
P. Ribenboim, FFF (Favorite Fibonacci Flowers), Fib. Q. 43 (No. 1, 2005), 3-14.
FORMULA
T(n, k) = Fibonacci(gcd(n, k)).
T(n, k) = T(k, n) = T(-n, k) = T(n, -k) = T(n, n+k) = T(n+k, k). - Michael Somos, Jul 18 2011
EXAMPLE
Triangle begins:
1;
1, 1;
1, 1, 2;
1, 1, 1, 3;
1, 1, 1, 1, 5;
1, 1, 2, 1, 1, 8;
1, 1, 1, 1, 1, 1, 13;
1, 1, 1, 3, 1, 1, 1, 21;
1, 1, 2, 1, 1, 2, 1, 1, 34;
1, 1, 1, 1, 5, 1, 1, 1, 1, 55;
...
MATHEMATICA
T[ n_, k_] := Fibonacci @ GCD[ n, k] (* Michael Somos, Jul 18 2011 *)
PROG
(PARI) {T(n, k) = fibonacci( gcd( n, k))} /* Michael Somos, Jul 18 2011 */
(Magma) /* As triangle */ [[Gcd(Fibonacci(n), Fibonacci(k)): k in [1..n]]: n in [1.. 15]]; // Vincenzo Librandi, Dec 20 2015
CROSSREFS
Sequence in context: A085476 A124944 A094392 * A175788 A237513 A137844
KEYWORD
nonn,tabl
AUTHOR
N. J. A. Sloane, Nov 28 2005
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 August 29 17:19 EDT 2024. Contains 375518 sequences. (Running on oeis4.)