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.

A077552 Consider the following triangle in which the n-th row contains n distinct numbers whose product is the smallest and has the least possible number of divisors. 1 is a member of only the first row. Sequence contains the final term of the rows (the leading diagonal).

Original entry on oeis.org

1, 3, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, 16777216, 33554432, 67108864, 134217728, 268435456, 536870912, 1073741824, 2147483648
Offset: 0

Views

Author

Amarnath Murthy, Nov 10 2002

Keywords

Comments

N points are chosen on a circle to get n arcs of different lengths. Then a(n-1) counts - Anton Zakharov, Dec 14 2016

Examples

			Triangle begins
1
2 3
2 4 8
2 4 8 16
2 4 8 16 32
		

Crossrefs

Cf. A132309.

Programs

  • Mathematica
    Table[2^(n + 1) - Boole[n < 2], {n, 0, 30}] (* Michael De Vlieger, Mar 15 2017 *)

Formula

For n>2, a(n)=2^n. - Ray Chandler, Aug 21 2003
Row sums of triangle A132309. - Gary W. Adamson, Aug 18 2007

Extensions

Corrected and extended by Ray Chandler, Aug 21 2003