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.

Showing 1-2 of 2 results.

A345272 Irregular triangle read by rows T(n,k) in which row n lists in nonincreasing order all divisors of the terms of the n-th row of triangle A110730, n >= 1, k >= 1.

Original entry on oeis.org

1, 2, 1, 1, 1, 3, 2, 2, 1, 1, 1, 1, 1, 1, 4, 3, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 4, 4, 3, 3, 3, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 5, 5, 4, 4, 4, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 1

Views

Author

Omar E. Pol, Jun 12 2021

Keywords

Comments

Note that in the definition A110730 can be replaced with A333516 or with A345116 since these three triangles contain in every row the same terms but in distinct order.
The sum of n-th row is equal to A175254(n) equaling the volume (also the number of cubes) of the stepped pyramid with n levels described in A245092.

Examples

			Triangle begins:
1;
2, 1, 1, 1;
3, 2, 2, 1, 1, 1, 1, 1, 1;
4, 3, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1;
5, 4, 4, 3, 3, 3, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1;
...
For n = 3 the third row of A110730 is [1, 1, 1, 2, 2, 3], so the divisors of these terms in nonincreasing order are [3, 2, 2, 1, 1, 1, 1, 1, 1], the same as the third row of triangle.
		

Crossrefs

Programs

  • PARI
    row(n) = my(v=[]); for (k=1, n, for (j=1, n-k+1, v = concat(v, divisors(k)))); vecsort(v,,4); \\ Michel Marcus, Jun 14 2021

A345116 Irregular triangle T(n,k) read by rows in which row n has length the n-th triangular number A000217(n) and every column k lists the positive integers A000027, n >= 1, k >= 1.

Original entry on oeis.org

1, 2, 1, 1, 3, 2, 2, 1, 1, 1, 4, 3, 3, 2, 2, 2, 1, 1, 1, 1, 5, 4, 4, 3, 3, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 6, 5, 5, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 7, 6, 6, 5, 5, 5, 4, 4, 4, 4, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 8, 7, 7, 6, 6, 6, 5, 5, 5, 5
Offset: 1

Views

Author

Omar E. Pol, Jun 08 2021

Keywords

Comments

Row n lists the terms of the n-th row of A333516 in nonincreasing order.
The sum of the divisors of the terms of the n-th row of the triangle is equal to A175254(n), equaling the volume of the stepped pyramid with n levels described in A245092.

Examples

			Triangle begins:
1;
2, 1, 1;
3, 2, 2, 1, 1, 1;
4, 3, 3, 2, 2, 2, 1, 1, 1, 1;
5, 4, 4, 3, 3, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1;
6, 5, 5, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1;
...
For n = 6 the divisors of the terms of the 6th row of triangle are:
6, 5, 5, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1;
3, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1;
2,       1, 1, 1;
1;
The sum of these divisors is equal to A175254(6) = 82, equaling the volume of the stepped pyramid with six levels described in A245092.
		

Crossrefs

Mirror of A110730.
Row lengths gives A000217, n >= 1.
Row sums gives A000292, n >= 1.
Every column gives A000027.
Showing 1-2 of 2 results.