A059589 Sums of factorials of distinct integers.
1, 2, 3, 4, 6, 7, 8, 9, 10, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 120, 121, 122, 123, 124, 126, 127, 128, 129, 130, 144, 145, 146, 147, 148, 150, 151, 152, 153, 154, 720, 721, 722, 723, 724, 726, 727, 728, 729, 730, 744, 745, 746, 747, 748, 750, 751, 752, 753
Offset: 1
Keywords
Examples
128 is in the sequence since 5! + 3! + 2! = 128. 2 = 0! + 1!.
Links
- Ivan Neretin, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Rest@Union[Plus @@@ (Subsets@Range[0, 6]!)] (* Ivan Neretin, Jun 05 2016 *)
Comments