A159797
Triangle read by rows in which row n lists n+1 terms, starting with n, such that the difference between successive terms is equal to n-1.
Original entry on oeis.org
0, 1, 1, 2, 3, 4, 3, 5, 7, 9, 4, 7, 10, 13, 16, 5, 9, 13, 17, 21, 25, 6, 11, 16, 21, 26, 31, 36, 7, 13, 19, 25, 31, 37, 43, 49, 8, 15, 22, 29, 36, 43, 50, 57, 64, 9, 17, 25, 33, 41, 49, 57, 65, 73, 81, 10, 19, 28, 37, 46, 55, 64, 73, 82, 91, 100, 11, 21, 31, 41, 51, 61, 71, 81, 91, 101
Offset: 0
Triangle begins:
0;
1, 1;
2, 3, 4;
3, 5, 7, 9;
4, 7,10,13,16;
5, 9,13,17,21,25;
6,11,16,21,26,31,36;
Triangle sums (see the comments):
A006002 (Row1),
A050187 (Row2),
A058187 (Related to Kn11, Kn12, Kn13, Fi1 and Ze1),
A006918 (Related to Kn21, Kn22, Kn23, Fi2 and Ze2),
A000330 (Kn3),
A016061 (Kn4),
A190717 (Related to Ca1 and Ze3),
A144677 (Related to Ca2 and Ze4),
A000292 (Related to Ca3, Ca4, Gi3 and Gi4)
A190718 (Related to Gi1) and
A144678 (Related to Gi2). (End)
A162610
Triangle read by rows in which row n lists n terms, starting with 2n-1, with gaps = n-1 between successive terms.
Original entry on oeis.org
1, 3, 4, 5, 7, 9, 7, 10, 13, 16, 9, 13, 17, 21, 25, 11, 16, 21, 26, 31, 36, 13, 19, 25, 31, 37, 43, 49, 15, 22, 29, 36, 43, 50, 57, 64, 17, 25, 33, 41, 49, 57, 65, 73, 81, 19, 28, 37, 46, 55, 64, 73, 82, 91, 100, 21, 31, 41, 51, 61, 71, 81, 91, 101, 111, 121
Offset: 1
Triangle begins:
1
3, 4
5, 7, 9
7, 10, 13, 16
9, 13, 17, 21, 25
11, 16, 21, 26, 31, 36
-
a162610 n k = k * n - k + n
a162610_row n = map (a162610 n) [1..n]
a162610_tabl = map a162610_row [1..]
-- Reinhard Zumkeller, Jan 19 2013
-
Flatten[Table[NestList[#+n-1&,2n-1,n-1], {n,15}]] (* Harvey P. Dale, Oct 20 2011 *)
-
# From R. J. Mathar, Oct 20 2009
def A162610(n, k):
return 2*n-1+(k-1)*(n-1)
print([A162610(n,k) for n in range(1,20) for k in range(1,n+1)])
A162609
Triangle read by rows in which row n lists n terms, starting with 1, with gaps = n-2 between successive terms.
Original entry on oeis.org
1, 1, 1, 1, 2, 3, 1, 3, 5, 7, 1, 4, 7, 10, 13, 1, 5, 9, 13, 17, 21, 1, 6, 11, 16, 21, 26, 31, 1, 7, 13, 19, 25, 31, 37, 43, 1, 8, 15, 22, 29, 36, 43, 50, 57, 1, 9, 17, 25, 33, 41, 49, 57, 65, 73, 1, 10, 19, 28, 37, 46, 55, 64, 73, 82, 91, 1, 11, 21, 31, 41, 51, 61, 71, 81
Offset: 1
Triangle begins:
1;
1, 1;
1, 2, 3;
1, 3, 5, 7;
1, 4, 7, 10, 13;
1, 5, 9, 13, 17, 21;
1, 6, 11, 16, 21, 26, 31;
-
Table[NestList[#+(n-2)&,1,n-1],{n,20}]//Flatten (* Harvey P. Dale, Oct 23 2017 *)
A162612
Triangle read by rows in which row n lists n terms, starting with n^2+n-1, with gaps = n^2-1 between successive terms.
Original entry on oeis.org
1, 5, 8, 11, 19, 27, 19, 34, 49, 64, 29, 53, 77, 101, 125, 41, 76, 111, 146, 181, 216, 55, 103, 151, 199, 247, 295, 343, 71, 134, 197, 260, 323, 386, 449, 512, 89, 169, 249, 329, 409, 489, 569, 649, 729, 109, 208, 307, 406, 505, 604, 703, 802, 901, 1000, 131, 251
Offset: 1
Triangle begins:
1;
5, 8;
11, 19, 27;
19, 34, 49, 64;
29, 53, 77, 101, 125;
41, 76, 111, 146, 181, 216;
A162613
Triangle read by rows in which row n lists n terms, starting with n, with gaps = n^2-1 between successive terms.
Original entry on oeis.org
1, 2, 5, 3, 11, 19, 4, 19, 34, 49, 5, 29, 53, 77, 101, 6, 41, 76, 111, 146, 181, 7, 55, 103, 151, 199, 247, 295, 8, 71, 134, 197, 260, 323, 386, 449, 9, 89, 169, 249, 329, 409, 489, 569, 649, 10, 109, 208, 307, 406, 505, 604, 703, 802, 901, 11, 131, 251, 371, 491, 611
Offset: 1
Triangle begins:
1;
2, 5;
3, 11, 19;
4, 19, 34, 49;
5, 29, 53, 77, 101;
6, 41, 76, 111, 146, 181;
-
Table[NestList[#+n^2-1&,n,n-1],{n,11}]//Flatten (* Harvey P. Dale, Feb 24 2016 *)
Original entry on oeis.org
0, 0, 2, 4, 4, 6, 16, 24, 24, 26, 32, 36, 38, 52, 88, 112, 112, 114, 120, 124, 126, 140, 168, 184, 186, 196, 212, 222, 240, 304, 432, 480, 480, 482, 488, 492, 494, 508, 536, 552, 554, 564, 580, 590, 608, 672, 768, 816, 818, 828
Offset: 0
A162607
a(n) = n*(n^2 - 4*n + 5)/2.
Original entry on oeis.org
0, 1, 1, 3, 10, 25, 51, 91, 148, 225, 325, 451, 606, 793, 1015, 1275, 1576, 1921, 2313, 2755, 3250, 3801, 4411, 5083, 5820, 6625, 7501, 8451, 9478, 10585, 11775, 13051, 14416, 15873, 17425, 19075, 20826, 22681, 24643, 26715, 28900, 31201, 33621
Offset: 0
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Amit Kumar Singh, Akash Kumar and Thambipillai Srikanthan, Accelerating Throughput-aware Run-time Mapping for Heterogeneous MPSoCs, ACM Transactions on Design Automation of Electronic Systems, 2012. - From _N. J. A. Sloane_, Dec 25 2012
- Index to sequences related to polygonal numbers
- Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1)
-
[n*(n^2 - 4*n + 5)/2: n in [0..50]]; // Vincenzo Librandi, Dec 19 2012
-
f[n_]:=(n^3-n^2)/2+1; Table[f[n],{n,-1,5!}] (* Vladimir Joseph Stephan Orlovsky, Feb 07 2010 *)
CoefficientList[Series[x*(1 - 3*x + 5*x^2)/(1 - x)^4, {x, 0, 50}], x] (* Vincenzo Librandi, Dec 19 2012 *)
-
for(n=0,50, print1(n*(n^2-4*n+5)/2, ", ")) \\ G. C. Greubel, Apr 21 2018
A162619
Triangle read by rows in which row n lists n consecutive natural numbers A000027, starting with A014689(n) = A000040(n)-n.
Original entry on oeis.org
1, 1, 2, 2, 3, 4, 3, 4, 5, 6, 6, 7, 8, 9, 10, 7, 8, 9, 10, 11, 12, 10, 11, 12, 13, 14, 15, 16, 11, 12, 13, 14, 15, 16, 17, 18, 14, 15, 16, 17, 18, 19, 20, 21, 22, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 25, 26, 27, 28, 29, 30, 31, 32, 33
Offset: 1
Triangle begins:
.1;
.1, 2;
.2, 3, 4;
.3, 4, 5, 6;
.6, 7, 8, 9,10;
.7, 8, 9,10,11,12;
10,11,12,13,14,15,16;
11,12,13,14,15,16,17,18;
14,15,16,17,18,19,20,21,22;
19,20,21,22,23,24,25,26,27,28;
20,21,22,23,24,25,26,27,28,29,30;
A162618
Triangle read by rows in which row n lists n consecutive natural numbers A000027, starting with A008578(n-1) - n + 1.
Original entry on oeis.org
1, 1, 2, 1, 2, 3, 2, 3, 4, 5, 3, 4, 5, 6, 7, 6, 7, 8, 9, 10, 11, 7, 8, 9, 10, 11, 12, 13, 10, 11, 12, 13, 14, 15, 16, 17, 11, 12, 13, 14, 15, 16, 17, 18, 19, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30
Offset: 1
Contribution from _Omar E. Pol_, Jul 15 2009: (Start)
Triangle begins:
1;
1, 2;
1, 2, 3;
2, 3, 4, 5;
3, 4, 5, 6, 7;
6, 7, 8, 9, 10, 11;
7, 8, 9, 10, 11, 12, 13;
10, 11, 12, 13, 14, 15, 16, 17;
11, 12, 13, 14, 15, 16, 17, 18, 19;
14, 15, 16, 17, 18, 19, 20, 21, 22, 23;
19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29;
20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31;
(End)
A162620
Triangle read by rows in which row n lists n consecutive natural numbers A000027, starting with A000040(n)-n+1.
Original entry on oeis.org
2, 2, 3, 3, 4, 5, 4, 5, 6, 7, 7, 8, 9, 10, 11, 8, 9, 10, 11, 12, 13, 11, 12, 13, 14, 15, 16, 17, 12, 13, 14, 15, 16, 17, 18, 19, 15, 16, 17, 18, 19, 20, 21, 22, 23, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 26, 27, 28, 29, 30, 31, 32, 33
Offset: 1
Triangle begins:
.2;
.2, 3;
.3, 4, 5;
.4, 5, 6, 7;
.7, 8, 9,10,11;
.8, 9,10,11,12,13;
11,12,13,14,15,16,17;
12,13,14,15,16,17,18,19;
15,16,17,18,19,20,21,22,23;
20,21,22,23,24,25,26,27,28,29;
21,22,23,24,25,26,27,28,29,30,31;
Showing 1-10 of 12 results.
Comments