OFFSET
3,1
COMMENTS
Carmichael showed that the sequence is well defined.
Same as A001578 without the "1" terms.
Given the definition, in particular omission of F(6) and F(12), setting offset=1 would be more adequate; offset=5 (= number of omitted terms) would give A001578 for n > 12 on. - M. F. Hasler, Oct 21 2012
LINKS
T. D. Noe, Table of n, a(n) for n=3..998
Ron Knott, Mathematics of the Fibonacci Series
Hisanori Mishima, Factorizations of many number sequences
Hisanori Mishima, Factorizations of many number sequences
Hisanori Mishima, Factorizations of many number sequences
Hisanori Mishima, Factorizations of many number sequences
Hisanori Mishima, Factorizations of many number sequences
FORMULA
a(n) = A001578(n+2) from n=11 on. - M. F. Hasler, Oct 21 2012
MATHEMATICA
f[n_] := Block[{p = First /@ FactorInteger[ Fibonacci[ n]]}, k = 1; lmt = 1 + Length@ p; While[k < lmt && MemberQ[lst, p[[k]]], k++]; If[k < lmt, AppendTo[lst, p[[k]]]]]; lst = {}; Do[ f[n], {n, 3, 51}]; lst (* Robert G. Wilson v, Oct 23 2012 *)
CROSSREFS
KEYWORD
nonn,easy,nice
AUTHOR
N. J. A. Sloane, Nov 08 2001
EXTENSIONS
More terms from Vladeta Jovovic and Lior Manor Nov 09 2001
Corrected by T. D. Noe, Feb 10 2007
STATUS
approved