OFFSET
1,2
COMMENTS
If n is odd then row n lists A000005(n) 1's.
If n is a power of 2 then row n is 1 plus the exponent of the power of 2.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..13282 (rows 1..3000 of triangle, flattened).
EXAMPLE
Triangle begins:
1;
2;
1, 1;
3;
1, 1;
2, 2;
1, 1;
4;
1, 1, 1;
2, 2;
1, 1;
2, 4;
1, 1;
2, 2;
1, 1, 1, 1;
5;
...
For n = 30 the list of divisors of 30 is [1, 2, 3, 5, 6, 10, 15, 30]. There are four sublists of divisors whose first term is odd. They are [1, 2], [3], [5, 6, 10], [15, 30]. The number of divisors in the sublists are respectively [2, 1, 3, 2], the same as the 30th row of the triangle.
MATHEMATICA
A384224row[n_] := Map[Length, Split[Divisors[n], EvenQ[#2] &]];
Array[A384224row, 50] (* Paolo Xausa, Sep 05 2025 *)
CROSSREFS
KEYWORD
nonn,tabf,easy
AUTHOR
Omar E. Pol, Jun 04 2025
STATUS
approved
