A182944 Square array A(i,j), i >= 1, j >= 1, of prime powers prime(i)^j, by descending antidiagonals.
2, 4, 3, 8, 9, 5, 16, 27, 25, 7, 32, 81, 125, 49, 11, 64, 243, 625, 343, 121, 13, 128, 729, 3125, 2401, 1331, 169, 17, 256, 2187, 15625, 16807, 14641, 2197, 289, 19, 512, 6561, 78125, 117649, 161051, 28561, 4913, 361, 23
Offset: 1
Examples
Square array A(i,j) begins: i \ j: 1 2 3 4 5 ... ---\------------------------------------- 1: 2, 4, 8, 16, 32, ... 2: 3, 9, 27, 81, 243, ... 3: 5, 25, 125, 625, 3125, ... 4: 7, 49, 343, 2401, 16807, ... ... The triangle T(n,k) begins: n\k: 1 2 3 4 5 6 ... 1: 2 2: 4 3 3: 8 9 5 4: 16 27 25 7 5: 32 81 125 49 11 6: 64 243 625 343 121 13 ...
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..11325 (rows 1..150, flattened)
- Michael De Vlieger, Diagram showing row n of triangle in a semicircle as noted, with a color function associated with the magnitude of T(n,k) compared to 2^n in light blue, where prime(n) is the smallest and the prime power indicated in red the largest in the row.
Crossrefs
Programs
-
Mathematica
TableForm[Table[Prime[n]^j,{n,1,14},{j,1,8}]]
Formula
Extensions
Clarified in respect of alternate reading as a triangle by Peter Munn, Aug 28 2022
Comments