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.

A004170 Reversals of Fibonacci numbers (sorted).

Original entry on oeis.org

0, 1, 1, 2, 3, 5, 8, 12, 16, 31, 43, 55, 98, 332, 441, 773, 789, 1814, 4852, 5676, 7951, 11771, 40238, 52057, 64901, 75682, 86364, 118713, 393121, 814691, 922415, 5647229, 7882075, 8754253, 9038712, 9626431
Offset: 0

Views

Author

Keywords

Comments

The smallest Fibonacci number with 1, 2, 3,... trailing zeros is F(15), F(150), F(750), F(7500), F(75000),.... This provides an idea of how many digits may be "lost" by reversal. - R. J. Mathar, Mar 11 2013

Crossrefs

Programs

  • Haskell
    import Data.Set (fromList, deleteFindMin, insert)
    a004170 n = a004170_list !! n
    a004170_list = 0 : 1 : f (fromList us) vs where
       f s (x:xs) = m : f (insert x s') xs
         where (m,s') = deleteFindMin s
       (us,vs) = splitAt 120 $ drop 2 a004091_list
    -- Reinhard Zumkeller, Mar 09 2013
  • Mathematica
    Sort[FromDigits[Reverse[IntegerDigits[#]]]&/@Fibonacci[Range[0,40]]] (* Harvey P. Dale, Jun 17 2011 *)
    IntegerReverse[Fibonacci[Range[0,40]]]//Sort (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jun 02 2019 *)