A338904 Irregular triangle read by rows where row n lists all semiprimes whose prime indices sum to n.
4, 6, 9, 10, 14, 15, 21, 22, 25, 26, 33, 35, 34, 39, 49, 55, 38, 51, 65, 77, 46, 57, 85, 91, 121, 58, 69, 95, 119, 143, 62, 87, 115, 133, 169, 187, 74, 93, 145, 161, 209, 221, 82, 111, 155, 203, 247, 253, 289, 86, 123, 185, 217, 299, 319, 323, 94, 129, 205
Offset: 2
Examples
Triangle begins: 4 6 9 10 14 15 21 22 25 26 33 35 34 39 49 55 38 51 65 77 46 57 85 91 121 58 69 95 119 143 62 87 115 133 169 187 74 93 145 161 209 221 82 111 155 203 247 253 289 86 123 185 217 299 319 323 94 129 205 259 341 361 377 391
Crossrefs
A004526 gives row lengths.
A024697 gives row sums.
A087112 is a different triangle of semiprimes.
A098350 has antidiagonals with the same distinct terms as these rows.
A014342 is the self-convolution of primes.
A037143 lists primes and semiprimes.
A056239 gives sum of prime indices (Heinz weight).
A062198 gives partial sums of semiprimes.
A332765 gives the greatest squarefree semiprime of weight n.
A338898, A338912, and A338913 give the prime indices of semiprimes, with product A087794, sum A176504, and difference A176506.
Programs
-
Mathematica
Table[Sort[Table[Prime[k]*Prime[n-k],{k,n/2}]],{n,2,10}]
Comments