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!)
A139045 Largest proper divisor of the Fibonacci numbers > 1. 4
1, 1, 1, 4, 1, 7, 17, 11, 1, 72, 1, 29, 305, 329, 1, 1292, 113, 2255, 5473, 199, 1, 23184, 15005, 521, 98209, 105937, 1, 416020, 2417, 726103, 1762289, 3571, 1845493, 7465176, 330929, 1056437, 31622993, 34111385, 59369, 133957148, 1, 233802911, 567451585 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,4
COMMENTS
See the list of divisors of positive Fibonacci numbers in the triangle A133021.
See the largest proper divisor of n in A032742.
Fibonacci(1)=Fibonacci(2)=1 do not have proper divisors. - Emeric Deutsch, May 18 2008
LINKS
FORMULA
a(n) = A032742(A000045(n)).
a(n) = A000045(n)/A060383(n). - Alois P. Heinz, Sep 03 2019
EXAMPLE
a(9) = 17 because the 9th Fibonacci number is 34 and the divisors of 34 are 1, 2, 17, 34, then the largest proper divisor of 34 is 17.
MAPLE
with(combinat): with(numtheory): a:=proc(n) options operator, arrow: op(tau(fibonacci(n))-1, divisors(fibonacci(n))) end proc: seq(a(n), n=3..40); # Emeric Deutsch, May 18 2008
# second Maple program:
a:= n-> (f-> f/min(numtheory[factorset](f)))((<<0|1>, <1|1>>^n)[1, 2]):
seq(a(n), n=3..47); # Alois P. Heinz, Sep 03 2019
MATHEMATICA
lpd[n_]:=Divisors[n][[-2]]; lpd/@(Fibonacci[Range[3, 40]]) (* Harvey P. Dale, Mar 29 2015 *)
CROSSREFS
Sequence in context: A108906 A193842 A134250 * A349147 A262361 A294791
KEYWORD
nonn
AUTHOR
Omar E. Pol, Apr 23 2008
EXTENSIONS
More terms from Emeric Deutsch, May 18 2008
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 April 25 13:02 EDT 2024. Contains 371969 sequences. (Running on oeis4.)