cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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.

Original entry on oeis.org

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

Views

Author

Omar E. Pol, Nov 23 2010

Keywords

Comments

Row n lists the number of digits of the numbers in the n-th row of triangle A182620.

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,
		

Crossrefs

Row sums give A182627.

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