A082653 For smallest numbers k such that A082596(k) = n, sequence gives A060863(k).
2, 30, 910, 15203
Offset: 1
Examples
For n=2; smallest number k = 20, A082596(20) = 2. so a(2) = A060863(20) = 30.
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
For n=2; smallest number k = 20, A082596(20) = 2. so a(2) = A060863(20) = 30.
Triangle begins: 2 3 5 3 5 7 5 7 11 13 71 73 79 83 89 5 7 11 13 17 19 7 11 13 17 19 23 29 17 19 23 29 31 37 41 43 239 241 251 257 263 269 271 277 281 13 17 19 23 29 31 37 41 43 47 29 31 37 41 43 47 53 59 61 67 71 5 7 11 13 17 19 23 29 31 37 41 43
f[n_] := Block[{k = 1, t},While[t = Table[Prime[i], {i, k, k + n - 1}]; Mod[Plus @@ t, n] > 0, k++ ];t];Flatten[Table[f[n], {n, 12}]]