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.

Previous Showing 11-11 of 11 results.

A308875 Irregular table read by rows: the n-th row lists the number of (n-1)-dimensional cells in the convex regular n-dimensional polytopes in ascending order, n >= 3.

Original entry on oeis.org

4, 6, 8, 12, 20, 5, 8, 16, 24, 120, 600, 6, 10, 32, 7, 12, 64, 8, 14, 128, 9, 16, 256, 10, 18, 512, 11, 20, 1024, 12, 22, 2048, 13, 24, 4096, 14, 26, 8192, 15, 28, 16384, 16, 30, 32768, 17, 32, 65536, 18, 34, 131072, 19, 36, 262144, 20, 38, 524288, 21, 40, 1048576
Offset: 3

Views

Author

Donghwi Park, Jun 29 2019

Keywords

Comments

Also, the n-th row lists the number of edges (i.e., 1-dimensional cells) in the convex regular n-dimensional polytopes in ascending order. - Jianing Song, Jun 29 2019

Examples

			From _Jianing Song_, Jun 29 2019: (Start)
Row 3: 4, 6, 8, 12, 20;
Row 4: 5, 8, 16, 24, 120, 600;
Row 5: 6, 10, 32;
Row 6: 7, 12, 64;
...
(End)
		

Crossrefs

Cf. A000079, A005843, A053016 (row 3), A063924 (row 4).

Programs

  • PARI
    row(n) = if(n>=5, [n+1, 2*n, 2^n], if(n==3, [4, 6, 8, 12, 20], if(n==4, [5, 8, 16, 24, 120, 600])))
    list(n) = my(v=[]); for(i=3, n, v=concat(v, row(i))); v \\ Jianing Song, Jun 29 2019

Formula

For n >= 5, the n-th row is n+1, 2n, 2^n. - Jianing Song, Jun 29 2019

Extensions

Edited by Jianing Song, Jun 29 2019
Previous Showing 11-11 of 11 results.