login
A393397
Irregular triangle read by rows: the n-th row gives the list of (n/d)^d where d is a divisor of n.
2
1, 2, 1, 3, 1, 4, 4, 1, 5, 1, 6, 9, 8, 1, 7, 1, 8, 16, 16, 1, 9, 27, 1, 10, 25, 32, 1, 11, 1, 12, 36, 64, 81, 64, 1, 13, 1, 14, 49, 128, 1, 15, 125, 243, 1, 16, 64, 256, 256, 1, 17, 1, 18, 81, 216, 729, 512, 1, 19, 1, 20, 100, 625, 1024, 1024, 1, 21, 343, 2187, 1, 22, 121, 2048, 1
OFFSET
1,2
LINKS
Stefano Spezia, Table of n, a(n) for n = 1..9534 (first 1300 rows of the triangle)
EXAMPLE
The irregular triangle begins as:
1;
2, 1;
3, 1;
4, 4, 1;
5, 1;
6, 9, 8, 1;
7, 1;
8, 16, 16, 1;
9, 27, 1;
10, 25, 32, 1;
11, 1;
12, 36, 64, 81, 64, 1;
...
MATHEMATICA
row[n_]:=Table[(n/d)^d, {d, Divisors[n]}]; Array[row, 22]//Flatten
CROSSREFS
Cf. A000005 (row lengths), A000027 (1st column), A055225 (row sums), A027750, A393227, A393396.
Sequence in context: A379314 A278575 A386500 * A393396 A381003 A333879
KEYWORD
nonn,easy,look,tabf
AUTHOR
Stefano Spezia, Feb 13 2026
STATUS
approved