[go: up one dir, main page]

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”).

A154631
Triangle read by rows: T(m,n) = 2mn + m + n + 5.
3
9, 12, 17, 15, 22, 29, 18, 27, 36, 45, 21, 32, 43, 54, 65, 24, 37, 50, 63, 76, 89, 27, 42, 57, 72, 87, 102, 117, 30, 47, 64, 81, 98, 115, 132, 149, 33, 52, 71, 90, 109, 128, 147, 166, 185, 36, 57, 78, 99, 120, 141, 162, 183, 204, 225, 39, 62, 85, 108, 131, 154
OFFSET
1,1
COMMENTS
All terms are in A153044. - Vincenzo Librandi, Aug 30 2012
EXAMPLE
Triangle begins:
9;
12, 17;
15, 22, 29;
18, 27, 36, 45;
21, 32, 43, 54, 65;
24, 37, 50, 63, 76, 89;
27, 42, 57, 72, 87, 102, 117;
30, 47, 64, 81, 98, 115, 132, 149;
33, 52, 71, 90, 109, 128, 147, 166, 185;
36, 57, 78, 99, 120, 141, 162, 183, 204, 225;
MATHEMATICA
Flatten[Table[2 n m + m + n + 5, {n, 10}, {m, n}]] (* Vincenzo Librandi, Aug 30 2012 *)
PROG
(Magma) /* Triangle: */ [[2*m*n+m+n+5: m in [1..n]]: n in [1..10]]; // Bruno Berselli, Aug 31 2012
CROSSREFS
Sequence in context: A176062 A027571 A342757 * A199593 A356842 A174525
KEYWORD
nonn,tabl,easy
AUTHOR
Vincenzo Librandi, Jan 17 2009
EXTENSIONS
Minor edits by Jon E. Schoenfield, Jun 23 2010
STATUS
approved