A093659 First column of lower triangular matrix A093658; factorial of the number of 1's in binary expansion of n.
1, 1, 1, 2, 1, 2, 2, 6, 1, 2, 2, 6, 2, 6, 6, 24, 1, 2, 2, 6, 2, 6, 6, 24, 2, 6, 6, 24, 6, 24, 24, 120, 1, 2, 2, 6, 2, 6, 6, 24, 2, 6, 6, 24, 6, 24, 24, 120, 2, 6, 6, 24, 6, 24, 24, 120, 6, 24, 24, 120, 24, 120, 120, 720, 1, 2, 2, 6, 2, 6, 6, 24, 2, 6, 6, 24, 6
Offset: 0
Links
Programs
-
Maple
a:= n-> add(i,i=Bits[Split](n))!: seq(a(n), n=0..80); # Alois P. Heinz, Nov 02 2024
-
Mathematica
Table[DigitCount[n,2,1]!,{n,0,70}] (* Harvey P. Dale, Jul 09 2019 *)
-
Python
from math import factorial def a(n): return factorial(n.bit_count()) # Michael S. Branicky, Nov 02 2024
Comments