A319135 Irregular triangle read by rows in which row n lists the positive divisors of n that are <= sqrt(n) in decreasing order.
1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 3, 1, 2, 1, 1, 3, 2, 1, 1, 2, 1, 3, 1, 4, 2, 1, 1, 3, 2, 1, 1, 4, 2, 1, 3, 1, 2, 1, 1, 4, 3, 2, 1, 5, 1, 2, 1, 3, 1, 4, 2, 1, 1, 5, 3, 2, 1, 1, 4, 2, 1, 3, 1, 2, 1, 5, 1, 6, 4, 3, 2, 1, 1, 2, 1, 3, 1, 5, 4, 2, 1, 1, 6, 3, 2, 1
Offset: 1
Examples
Triangle begins: 1 1 1 2 1 1 2 1 1 2 1 3 1 2 1 1 3 2 1 1 2 1 3 1 4 2 1
Crossrefs
Programs
-
PARI
row(n) = Vecrev(select(x->(x<=sqrt(n)), divisors(n))); \\ Jinyuan Wang, Mar 13 2021
Formula
Extensions
More terms from Jinyuan Wang, Mar 13 2021
Comments