The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A262341 Largest primitive prime factor of Fibonacci number F(n), or 1 if no primitive. 1
1, 1, 2, 3, 5, 1, 13, 7, 17, 11, 89, 1, 233, 29, 61, 47, 1597, 19, 113, 41, 421, 199, 28657, 23, 3001, 521, 109, 281, 514229, 31, 2417, 2207, 19801, 3571, 141961, 107, 2221, 9349, 135721, 2161, 59369, 211, 433494437, 307, 109441, 461, 2971215073, 1103, 6168709, 151 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Carmichael proved that a(n) > 1 if n > 12.
See A001578 (smallest primitive prime factor of F(n)) and A061446 (primitive part of F(n)) for more links.
LINKS
R. D. Carmichael, On the numerical factors of the arithmetic forms α^n±β^n, Annals of Math., 15 (1913), 30-70.
EXAMPLE
The prime factors of F(46)= 139 * 461 * 28657 that do not divide any smaller Fibonacci number are 139 and 461, so a(46) = 461.
MATHEMATICA
prms={}; Table[f=First/@FactorInteger[Fibonacci[n]]; p=Complement[f, prms]; prms=Join[prms, p]; If[p=={}, 1, Last[p]], {n, 50}]
PROG
(Perl) use ntheory ":all"; my %s; for (1..100) { my @f = factor(lucasu(1, -1, $_)); pop @f while @f && $s{$f[-1]}++; say "$_ ", $f[-1] || 1; } # Dana Jacobsen, Oct 13 2015
CROSSREFS
Sequence in context: A262215 A030790 A001578 * A178763 A111141 A069111
KEYWORD
nonn
AUTHOR
Jonathan Sondow, Oct 12 2015
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 15 06:37 EDT 2024. Contains 372538 sequences. (Running on oeis4.)