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.
%I A227875 #52 Apr 25 2025 06:28:01 %S A227875 0,1,8,144 %N A227875 Fibonacci numbers which are perfect powers. %C A227875 Also, Fibonacci numbers which are products of Fibonacci numbers (each greater than 1 when the product is greater than 1 - see A235383). - _Rick L. Shepherd_, Feb 19 2014 %C A227875 The terms of the subsequence (1, 8, 144) are the Fibonacci numbers that are powerful numbers. - _Robert C. Lyons_, Jul 12 2016 %C A227875 Also Fibonacci numbers without any primitive divisors. See [Heuberger & Wagner]. - _Michel Marcus_, Aug 21 2016 %C A227875 It was proved (Bugeaud, Mignotte, and Siksek, 2006, p. 971) that the only perfect powers among the Fibonacci numbers and Lucas numbers are {0, 1, 8, 144} and {1, 4}, respectively. - _Daniel Forgues_, Apr 09 2018 %H A227875 Vladica Andrejic, <a href="http://www.doiserbia.nb.rs/img/doi/0353-8893/2006/0353-88930617038A.pdf">On Fibonacci Powers</a>, Univ. Beograd. Publ. Elektrotehn. Fak. Ser. Mat. 17 (2006), 38-44. %H A227875 Yann Bugeaud, Florian Luca, Maurice Mignotte, and Samir Siksek, <a href="http://www-irma.u-strasbg.fr/~bugeaud/travaux/OmegaDef.pdf">On Fibonacci numbers with few prime divisors</a>, Proc. Japan Acad., 81, Ser. A (2005), pp. 17-20. %H A227875 Yann Bugeaud, Maurice Mignotte, and Samir Siksek, <a href="http://dx.doi.org/10.4007/annals.2006.163.969">Classical and modular approaches to exponential Diophantine equations I. Fibonacci and Lucas perfect powers</a>, Annals of Mathematics, 163 (2006), pp. 969-1018. %H A227875 Clemens Heuberger and Stephan Wagner, <a href="https://arxiv.org/abs/1606.02639">On the monoid generated by a Lucas sequence</a>, arXiv:1606.02639 [math.NT], 2016. Gives the complement sequence w.r.t Fibonacci numbers. %H A227875 J. Mc Laughlin, <a href="http://arxiv.org/abs/math/0110150">Small prime powers in the Fibonacci sequence</a>, arXiv:math/0110150 [math.NT] (2001). %H A227875 Attila Pethő, <a href="https://www.emis.de/journals/AMAPN/vol17_2/6.html">Diophantine properties of linear recursive sequences II</a>, Acta Mathematica Academiae Paedagogicae Nyíregyháziensis 17:2 (2001), pp. 81-96. %t A227875 perfectPowerQ[0] = True; perfectPowerQ[1] = True; perfectPowerQ[n_] := GCD @@ FactorInteger[n][[All, 2]] > 1; Union[Select[Fibonacci /@ Range[0, 20], perfectPowerQ]] %Y A227875 Cf. A000045, A001597, A072381, A114842. %K A227875 nonn,bref,fini,full %O A227875 1,3 %A A227875 _Jean-François Alcover_, Oct 25 2013