Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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.
2
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,3
COMMENTS
Row n lists the number of digits of the numbers in the n-th row of triangle A182620.
LINKS
EXAMPLE
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,
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
CROSSREFS
Row sums give A182627.
Sequence in context: A194066 A308916 A353171 * A361477 A331366 A274225
KEYWORD
nonn,base,easy,tabf
AUTHOR
Omar E. Pol, Nov 23 2010
EXTENSIONS
a(38)-a(79) from Nathaniel Johnston, Apr 19 2011
STATUS
approved