cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A061488 Factorize the Fibonacci numbers in order, skipping F(0)-F(2), F(6)=8 and F(12)=144; at each step at least one new prime will occur; append to the sequence the smallest such new prime.

This page as a plain text file.
%I A061488 #33 Apr 16 2025 05:41:54
%S A061488 2,3,5,13,7,17,11,89,233,29,61,47,1597,19,37,41,421,199,28657,23,3001,
%T A061488 521,53,281,514229,31,557,2207,19801,3571,141961,107,73,9349,135721,
%U A061488 2161,2789,211,433494437,43,109441,139,2971215073,1103,97,101,6376021
%N A061488 Factorize the Fibonacci numbers in order, skipping F(0)-F(2), F(6)=8 and F(12)=144; at each step at least one new prime will occur; append to the sequence the smallest such new prime.
%C A061488 Carmichael showed that the sequence is well defined.
%C A061488 Same as A001578 without the "1" terms.
%C A061488 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
%H A061488 T. D. Noe, <a href="/A061488/b061488.txt">Table of n, a(n) for n=3..998</a>
%H A061488 Ron Knott, <a href="http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fibonacci/fibmaths.html">Mathematics of the Fibonacci Series</a>
%H A061488 Hisanori Mishima, <a href="http://www.asahi-net.or.jp/~KC2H-MSM/mathland/matha1/matha108.htm">Factorizations of many number sequences</a>
%H A061488 Hisanori Mishima, <a href="http://www.asahi-net.or.jp/~KC2H-MSM/mathland/matha1/matha109.htm">Factorizations of many number sequences</a>
%H A061488 Hisanori Mishima, <a href="http://www.asahi-net.or.jp/~KC2H-MSM/mathland/matha1/matha110.htm">Factorizations of many number sequences</a>
%H A061488 Hisanori Mishima, <a href="http://www.asahi-net.or.jp/~KC2H-MSM/mathland/matha1/matha111.htm">Factorizations of many number sequences</a>
%H A061488 Hisanori Mishima, <a href="http://www.asahi-net.or.jp/~KC2H-MSM/mathland/matha1/matha112.htm">Factorizations of many number sequences</a>
%F A061488 a(n) = A001578(n+2) from n=11 on. - _M. F. Hasler_, Oct 21 2012
%t A061488 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 *)
%Y A061488 Cf. A000045, A061446.
%K A061488 nonn,easy,nice
%O A061488 3,1
%A A061488 _N. J. A. Sloane_, Nov 08 2001
%E A061488 More terms from _Vladeta Jovovic_ and _Lior Manor_, Nov 09 2001
%E A061488 Corrected by _T. D. Noe_, Feb 10 2007