Search: id:A007623 Results 1-1 of 1 results found. %I A007623 M4678 %S A007623 0,1,10,11,20,21,100,101,110,111,120,121,200,201,210,211,220,221,300,301, %T A007623 310,311,320,321,1000,1001,1010,1011,1020,1021,1100,1101,1110,1111,1120, 1121, %U A007623 1200,1201,1210,1211,1220,1221,1300,1301,1310,1311,1320,1321,2000,2001, 2010 %N A007623 Integers written in factorial base. %C A007623 Places reading from right have values (1, 2, 6, 24, 120, ...) = factorials. %C A007623 Also the reversed inversion vectors for the list of all finite permutations in reversed lexicographic order: A055089. %C A007623 For large n it would be better to separate the "digits" by commas. - M. F. Hasler (Maximilian.Hasler(AT)gmail.com), Mar 27 2007 %D A007623 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence). %D A007623 D. E. Knuth, The Art of Computer Programming. Addison-Wesley, Reading, MA, Vol. 2, p. 192. %D A007623 F. Smarandache, Definitions solved and unsolved problems, conjectures and theorems in number theory and geometry, edited by M. Perez, Xiquan Publishing House, 2000. %H A007623 M. F. Hasler, Table of n, a(n) for n = 0..1000 %H A007623 F. Smarandache, Definitions, Solved and Unsolved Problems, Conjectures, ... %H A007623 Wikipedia, Factorial base %e A007623 a(47) = 1321 because 47 = 1*4! + 3*3! + 2*2! + 1*1! %p A007623 a := n -> if nargs<2 then a(n,2) elif n i!, i++ ]; m = n; len = i; dList = Table[0, {len}]; Do[ currDigit = 0; While[m >= j!, m = m - j!; currDigit++ ]; dList[[len - j + 1]] = currDigit, {j, i, 1, -1}]; If[dList[[1]] == 0, dList = Drop[dList, 1]]; dList]; Table[FromDigits[factBaseIntDs[n]], {n, 0, 50}] - Alonso Delarte (alonso.delarte(AT)gmail.com), May 03 2006 %o A007623 (PARI): a(n,p=2) = if( n