A272918 Fibonacci numbers with the base 10 digits sorted into increasing order.
0, 1, 1, 2, 3, 5, 8, 13, 12, 34, 55, 89, 144, 233, 377, 16, 789, 1579, 2458, 1148, 5667, 1469, 11177, 25678, 34668, 2557, 112339, 114689, 111378, 122459, 2348, 1234669, 123789, 2345578, 257788, 2245679, 1233459, 11245778, 1368899, 23456689, 11233455, 11145568
Offset: 0
Examples
a(8) = 12 because F(8) = 21, so the digits in ascending order become 12. a(9) = 34 = F(9), the digits are already in ascending order.
Links
- G. C. Greubel, Table of n, a(n) for n = 0..500
Programs
-
Mathematica
Table[FromDigits[Sort[IntegerDigits[Fibonacci[n]]]], {n, 0, 49}]
-
Python
from gmpy2 import fib for n in range(500): print(''.join(sorted(list(str(fib(n))))),end=', ') # Soumil Mandal, May 14 2016
Comments