login
A073656
Rearrangement of Fibonacci numbers such that sum of two consecutive terms is a prime.
4
1, 1, 2, 3, 8, 5, 144, 13, 34, 55
OFFSET
1,3
COMMENTS
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
MATHEMATICA
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 *)
CROSSREFS
Sequence in context: A243103 A051696 A066570 * A047930 A349100 A073875
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Aug 10 2002
STATUS
approved