login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A137440
Triangle T(n,m) read by rows: T(m,n) = (1+n*3^m)-th prime.
0
2, 3, 7, 5, 17, 67, 7, 29, 107, 421, 11, 41, 157, 599, 2153, 13, 53, 199, 769, 2791, 9857, 17, 67, 257, 967, 3469, 12203, 41851, 19, 79, 311, 1151, 4129, 14537, 49697, 167623, 23, 97, 367, 1327, 4817, 16871, 57571, 193957, 645581, 29, 107, 421, 1549, 5521
OFFSET
1,1
COMMENTS
Row sums are: {2, 10, 89, 564, 2961, 13682, 58831, 237546, 920611, 3459888, 12685349, ...}
The first 3 columns are essentially A000040, A031377 and A031918. - R. J. Mathar, May 05 2008
EXAMPLE
{2},
{3, 7},
{5, 17, 67},
{7, 29, 107, 421},
{11, 41, 157, 599, 2153},
{13, 53, 199, 769, 2791, 9857},
{17, 67, 257, 967, 3469, 12203, 41851},
{19, 79, 311, 1151, 4129, 14537, 49697, 167623},
{23, 97, 367, 1327, 4817, 16871, 57571, 193957, 645581},
{29, 107, 421, 1549, 5521, 19301, 65699, 220873, 33591, 2412797},
{31, 127, 467, 1741, 6229, 21649, 73867, 247943, 822587, 2702809, 8807899}
MATHEMATICA
T[n_, m_] := Prime[1 + n*3^m]; Table[Table[T[n, m], {m, 0, n}], {n, 0, 10}]; Flatten[%] Table[Apply[Plus, Table[T[n, m], {m, 0, n}]], {n, 0, 10}];
CROSSREFS
Sequence in context: A370094 A228775 A129543 * A294639 A038026 A051860
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Apr 17 2008
EXTENSIONS
Edited by N. J. A. Sloane, May 16 2008
STATUS
approved