A182628 Triangle T(n,k) read by rows in which row n lists the number of digits of the binary expansion of the divisors of n.
1, 1, 2, 1, 2, 1, 2, 3, 1, 3, 1, 2, 2, 3, 1, 3, 1, 2, 3, 4, 1, 2, 4, 1, 2, 3, 4, 1, 4, 1, 2, 2, 3, 3, 4, 1, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 5, 1, 5, 1, 2, 2, 3, 4, 5, 1, 5, 1, 2, 3, 3, 4, 5, 1, 2, 3, 5, 1, 2, 4, 5, 1, 5, 1, 2, 2
Offset: 1
Examples
Triangle begins: 1, 1, 2, 1, 2, 1, 2, 3, 1, 3, 1, 2, 2, 3, 1, 3, 1, 2, 3, 4, 1, 2, 4, 1, 2, 3, 4, 1, 4, 1, 2, 2, 3, 3, 4,
Links
- Nathaniel Johnston, Table of n, a(n) for n = 1..10000
Programs
-
Maple
with(numtheory):for n from 1 to 12 do for d in divisors(n) do printf("%d, ",length(convert(convert(d, binary),string))); od:printf("\n"); od: # Nathaniel Johnston, Apr 19 2011
Extensions
a(38)-a(79) from Nathaniel Johnston, Apr 19 2011
Comments