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 A073656 #6 Nov 17 2018 21:25:18 %S A073656 1,1,2,3,8,5,144,13,34,55 %N A073656 Rearrangement of Fibonacci numbers such that sum of two consecutive terms is a prime. %C A073656 a(11) = F(67671), the 67671st Fibonacci number. This has over 14000 decimal digits and is too large to display here. - _Ryan Propper_, Jun 16 2006 %t A073656 l = {1, 1}; Do[k = 1; While[MemberQ[l, Fibonacci[k]] || !PrimeQ[Last[l] + Fibonacci[k]], k++ ]; AppendTo[l, Fibonacci[k]]; Print[l], {n, 9}] (* _Ryan Propper_, Jun 16 2006 *) %Y A073656 Cf. A073655, A073657. %K A073656 nonn %O A073656 1,3 %A A073656 _Amarnath Murthy_, Aug 10 2002