OFFSET
3,1
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
LINKS
FORMULA
For n >= 5, the n-th row is n+1, 2n, 2^n. - Jianing Song, Jun 29 2019
EXAMPLE
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)
PROG
(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
CROSSREFS
KEYWORD
nonn,easy,tabf
AUTHOR
Donghwi Park, Jun 29 2019
EXTENSIONS
Edited by Jianing Song, Jun 29 2019
STATUS
approved