OFFSET
1,3
COMMENTS
Numbers of triangle A027750, written in base 2.
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 1..7069
EXAMPLE
The divisors of 10 are 1, 2, 5, 10 then row 10 lists the binary numbers 1, 10, 101, 1010.
Triangle begins:
1,
1, 10,
1, 11,
1, 10, 100,
1, 101,
1, 10, 11, 110,
1, 111,
1, 10, 100, 1000,
1, 11, 1001,
1, 10, 101, 1010,
1, 1011,
1, 10, 11, 100, 110, 1100,
MAPLE
with(numtheory):for n from 1 to 10 do for d in divisors(n) do printf("%d, ", convert(d, binary)); od:printf("\n"); od: # Nathaniel Johnston, Apr 19 2011
MATHEMATICA
Table[FromDigits[IntegerDigits[#, 2]]&/@Divisors[n], {n, 20}]//Flatten (* Harvey P. Dale, May 31 2018 *)
CROSSREFS
KEYWORD
nonn,easy,tabf,base
AUTHOR
Omar E. Pol, Nov 22 2010
EXTENSIONS
a(38)-a(55) from Nathaniel Johnston, Apr 19 2011
STATUS
approved