Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Search: a098849 -id:a098849
     Sort: relevance | references | number | modified | created      Format: long | short | data
a(n) = n*(n + 17)/2.
+10
21
0, 9, 19, 30, 42, 55, 69, 84, 100, 117, 135, 154, 174, 195, 217, 240, 264, 289, 315, 342, 370, 399, 429, 460, 492, 525, 559, 594, 630, 667, 705, 744, 784, 825, 867, 910, 954, 999, 1045, 1092, 1140, 1189, 1239, 1290, 1342, 1395, 1449, 1504, 1560, 1617, 1675
OFFSET
0,2
FORMULA
G.f.: x*(9-8*x)/(1-x)^3.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
a(n) = A126890(n,8) for n>7. - Reinhard Zumkeller, Dec 30 2006
If we define f(n,i,a) = Sum_{k=0..n-i} binomial(n,k)*stirling1(n-k,i)* Product_{j=0..k-1} (-a-j), then a(n) = -f(n,n-1,9), for n>=1. - Milan Janjic, Dec 20 2008
a(n) = a(n-1) + n + 8 (with a(0)=0). - Vincenzo Librandi, Aug 07 2010
a(n) = 9*n - floor(n/2) + floor(n^2/2). - Wesley Ivan Hurt, Jun 15 2013
E.g.f.: x*(18 + x)*exp(x)/2. - G. C. Greubel, Jan 19 2020
From Amiram Eldar, Jan 10 2021: (Start)
Sum_{n>=1} 1/a(n) = 2*A001008(17)/(17*A002805(17)) = 42142223/104144040.
Sum_{n>=1} (-1)^(n+1)/a(n) = 4*log(2)/17 - 1768477/20828808. (End)
MAPLE
seq( n*(n+17)/2, n=0..50); # G. C. Greubel, Jan 19 2020
MATHEMATICA
Table[n(n+17)/2, {n, 0, 50}] (* Harvey P. Dale, Apr 25 2011 *)
PROG
(PARI) a(n)=n*(n+17)/2 \\ Charles R Greathouse IV, Sep 24 2015
(Magma) [n*(n+17)/2: n in [0..50]]; // G. C. Greubel, Jan 19 2020
(Sage) [n*(n+17)/2 for n in (0..50)] # G. C. Greubel, Jan 19 2020
(GAP) List([0..50], n-> n*(n+17)/2 ); # G. C. Greubel, Jan 19 2020
KEYWORD
easy,nonn
AUTHOR
Barry E. Williams, Jul 07 2000
STATUS
approved
a(n) = n*(n+17).
+10
19
0, 18, 38, 60, 84, 110, 138, 168, 200, 234, 270, 308, 348, 390, 434, 480, 528, 578, 630, 684, 740, 798, 858, 920, 984, 1050, 1118, 1188, 1260, 1334, 1410, 1488, 1568, 1650, 1734, 1820, 1908, 1998, 2090, 2184, 2280, 2378, 2478, 2580, 2684, 2790, 2898, 3008, 3120
OFFSET
0,2
COMMENTS
a(n) is the first Zagreb index of the helm graph H[n] (n>=3). - Emeric Deutsch, Nov 05 2016
From Emeric Deutsch, Nov 07 2016: (Start)
a(n) is the first Zagreb index of the graph obtained by joining one vertex of the cycle graph C[n] with each vertex of a second cycle graph C[n].
The first Zagreb index of a simple connected graph is the sum of the squared degrees of its vertices. Alternately, it is the sum of the degree sums d(i)+d(j) over all edges ij of the graph. (End)
From Emeric Deutsch, May 11 2018: (Start)
The M-polynomial of the Helm graph H[n] is M(H[n];x,y) = n*x*y^4 + n*x^4*y^4 + n*x^4*y^n.
The helm graph H[n] is the graph obtained from an n-wheel graph by adjoining a pendant edge at each node of the cycle. (End)
LINKS
Emeric Deutsch and Sandi Klavzar, M-polynomial and degree-based topological indices, Iranian J. Math. Chemistry, Vol. 6, No. 2 (2015), pp. 93-102.
Ivan Gutman and Kinkar Ch. Das, The first Zagreb index 30 years after, MATCH Commun. Math. Comput. Chem. 50 (2004), pp. 83-92.
Felix P. Muga II, Extending the Golden Ratio and the Binet-de Moivre Formula, Preprint on ResearchGate, March 2014.
Eric Weisstein's World of Mathematics, Helm Graph.
FORMULA
a(n) = n*(n + 17).
a(n) = A132760(n) + 2*n = A132765(n) - 6*n = A098849(n) + 1*n = A120071(n) - 3*n. - Zerinvary Lajos, Feb 17 2008
a(n) = 2*n + a(n-1) + 16 for n>0, a(0)=0. - Vincenzo Librandi, Aug 03 2010
G.f.: 2*x*(9 - 8*x)/(1 - x)^3. - Emeric Deutsch, Nov 07 2016
From Amiram Eldar, Jan 16 2021: (Start)
Sum_{n>=1} 1/a(n) = H(17)/17 = A001008(17)/A102928(17) = 42142223/208288080, where H(k) is the k-th harmonic number.
Sum_{n>=1} (-1)^(n+1)/a(n) = 2*log(2)/17 - 1768477/41657616. (End)
MATHEMATICA
Table[n(n+17), {n, 0, 50}] (* or *) LinearRecurrence[{3, -3, 1}, {0, 18, 38}, 50] (* Harvey P. Dale, Sep 12 2020 *)
PROG
(PARI) a(n)=n*(n+17) \\ Charles R Greathouse IV, Nov 07 2016
(GAP) List([0..50], n->n*(n+17)); # Muniru A Asiru, May 11 2018
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Aug 28 2007
STATUS
approved
Triangle T(n,m) = 1+2*m of odd numbers read along rows, 0<=m<n.
+10
19
1, 1, 3, 1, 3, 5, 1, 3, 5, 7, 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 11, 1, 3, 5, 7, 9, 11, 13, 1, 3, 5, 7, 9, 11, 13, 15, 1, 3, 5, 7, 9, 11, 13, 15, 17, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23
OFFSET
1,3
COMMENTS
Row sums are n^2 = A000290(n).
The triangle sums, see A180662 for their definitions, link this triangle of odd numbers with seventeen different sequences, see the crossrefs. The knight sums Kn14 - Kn110 have been added. - Johannes W. Meijer, Sep 22 2010
A208057 is the eigentriangle of A158405 such that as infinite lower triangular matrices, A158405 * A208057 shifts the latter, deleting the right border of 1's. - Gary W. Adamson, Feb 22 2012
T(n,k) = A099375(n-1,n-k), 1<=k<=n. [Reinhard Zumkeller, Mar 31 2012]
LINKS
Daniel Erman, The Josephus Problem, Numberphile video (2016)
Boris Putievskiy, Transformations [of] Integer Sequences And Pairing Functions arXiv:1212.2732 [math.CO], 2012.
FORMULA
a(n) = 2*i-1, where i = n-t(t+1)/2, t = floor((-1+sqrt(8*n-7))/2). - Boris Putievskiy, Feb 03 2013
a(n) = 2*A002262(n-1) + 1. - Eric Werley, Sep 30 2015
EXAMPLE
The triangle contains the first n odd numbers in row n:
1;
1,3;
1,3,5;
1,3,5,7;
From Seiichi Manyama, Dec 02 2017: (Start)
| a(n) | | A000290(n)
-----------------------------------------------------------------
0| (= 0)
1| 1 = 1/3 * ( 3) (= 1)
2| 1 + 3 = 1/3 * ( 5 + 7) (= 4)
3| 1 + 3 + 5 = 1/3 * ( 7 + 9 + 11) (= 9)
4| 1 + 3 + 5 + 7 = 1/3 * ( 9 + 11 + 13 + 15) (= 16)
5| 1 + 3 + 5 + 7 + 9 = 1/3 * (11 + 13 + 15 + 17 + 19) (= 25)
(End)
MATHEMATICA
Table[2 Range[1, n] - 1, {n, 12}] // Flatten (* Michael De Vlieger, Oct 01 2015 *)
PROG
(Haskell)
a158405 n k = a158405_row n !! (k-1)
a158405_row n = a158405_tabl !! (n-1)
a158405_tabl = map reverse a099375_tabl
-- Reinhard Zumkeller, Mar 31 2012
(PARI) a(n) = 2*(n-floor((-1+sqrt(8*n-7))/2)*(floor((-1+sqrt(8*n-7))/2)+1)/2)-1;
vector(100, n, a(n)) \\ Altug Alkan, Oct 01 2015
CROSSREFS
Triangle sums (see the comments): A000290 (Row1; Kn11 & Kn4 & Ca1 & Ca4 & Gi1 & Gi4); A000027 (Row2); A005563 (Kn12); A028347 (Kn13); A028560 (Kn14); A028566 (Kn15); A098603 (Kn16); A098847 (Kn17); A098848 (Kn18); A098849 (Kn19); A098850 (Kn110); A000217 (Kn21. Kn22, Kn23, Fi2, Ze2); A000384 (Kn3, Fi1, Ze3); A000212 (Ca2 & Ze4); A000567 (Ca3, Ze1); A011848 (Gi2); A001107 (Gi3). - Johannes W. Meijer, Sep 22 2010
KEYWORD
nonn,tabl,easy
AUTHOR
Paul Curtz, Mar 18 2009
EXTENSIONS
Edited by R. J. Mathar, Oct 06 2009
STATUS
approved
a(n) = n*(n+20).
+10
18
0, 21, 44, 69, 96, 125, 156, 189, 224, 261, 300, 341, 384, 429, 476, 525, 576, 629, 684, 741, 800, 861, 924, 989, 1056, 1125, 1196, 1269, 1344, 1421, 1500, 1581, 1664, 1749, 1836, 1925, 2016, 2109, 2204, 2301, 2400, 2501, 2604, 2709, 2816, 2925, 3036, 3149, 3264
OFFSET
0,2
FORMULA
a(n) = (n+10)^2 - 10^2 = n*(n+20), n>=0.
G.f.: x*(21-19*x)/(1-x)^3.
a(n) = 2*n + a(n-1) + 19 (with a(0)=0). - Vincenzo Librandi, Nov 13 2010
From Amiram Eldar, Jan 16 2021: (Start)
Sum_{n>=1} 1/a(n) = H(20)/20 = A001008(20)/A102928(20) = 11167027/62078016, where H(k) is the k-th harmonic number.
Sum_{n>=1} (-1)^(n+1)/a(n) = 155685007/4655851200. (End)
MAPLE
seq(sum(4*k-n, k=7..n), n=6..51); # Zerinvary Lajos, Feb 17 2008
MATHEMATICA
s=0; lst={}; Do[s+=n; AppendTo[lst, s], {n, 21, 6!, 2}]; lst (* Vladimir Joseph Stephan Orlovsky, Feb 26 2009 *)
PROG
(PARI) a(n)=n*(n+20) \\ Charles R Greathouse IV, Jan 21 2015
CROSSREFS
a(n-10), n>=11, tenth column (used for the n=10 series of the hydrogen atom) of triangle A120070.
For n*(n+18) see A098850.
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Jul 20 2006
STATUS
approved
a(n) = n*(n+15).
+10
17
0, 16, 34, 54, 76, 100, 126, 154, 184, 216, 250, 286, 324, 364, 406, 450, 496, 544, 594, 646, 700, 756, 814, 874, 936, 1000, 1066, 1134, 1204, 1276, 1350, 1426, 1504, 1584, 1666, 1750, 1836, 1924, 2014, 2106, 2200, 2296, 2394, 2494
OFFSET
0,2
FORMULA
a(n) = n*(n + 15).
a(n) = 2*A056121(n). - Reinhard Zumkeller, Mar 20 2009
a(n) = 2*n + a(n-1) + 14 (with a(0)=0). - Vincenzo Librandi, Aug 03 2010
G.f.: 2*x*(-8+7*x) / (x-1)^3 . - R. J. Mathar, Jul 14 2012
Sum_{n>=1} 1/a(n) = 1195757/5405400 = 0.22121526621... - R. J. Mathar, Jul 14 2012
Sum_{n>=1} (-1)^(n+1)/a(n) = 2*log(2)/15 - 52279/1081080. - Amiram Eldar, Jan 15 2021
MATHEMATICA
s=0; lst={}; Do[s+=n; AppendTo[lst, s], {n, 16, 6!, 2}]; lst (* Vladimir Joseph Stephan Orlovsky, Feb 26 2009 *)
Table[n(n+15), {n, 0, 60}] (* or *) LinearRecurrence[{3, -3, 1}, {0, 16, 34}, 60] (* Harvey P. Dale, Jan 20 2019 *)
PROG
(PARI) a(n)=n*(n+15) \\ Charles R Greathouse IV, Sep 24 2015
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, Aug 28 2007
STATUS
approved
a(n) = n*(n + 23).
+10
17
0, 24, 50, 78, 108, 140, 174, 210, 248, 288, 330, 374, 420, 468, 518, 570, 624, 680, 738, 798, 860, 924, 990, 1058, 1128, 1200, 1274, 1350, 1428, 1508, 1590, 1674, 1760, 1848, 1938, 2030, 2124, 2220, 2318, 2418, 2520, 2624, 2730, 2838, 2948, 3060, 3174, 3290, 3408
OFFSET
0,2
FORMULA
a(n) = n*(n + 23).
a(n) = 2*n + a(n-1) + 22 for n>0, a(0)=0. - Vincenzo Librandi, Aug 03 2010
From Chai Wah Wu, Dec 17 2016: (Start)
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n > 2.
G.f.: 2*x*(12 - 11*x)/(1-x)^3. (End)
From Amiram Eldar, Jan 16 2021: (Start)
Sum_{n>=1} 1/a(n) = H(23)/23 = A001008(23)/A102928(23) = 444316699/2736605872, where H(k) is the k-th harmonic number.
Sum_{n>=1} (-1)^(n+1)/a(n) = 2*log(2)/23 - 3825136961/123147264240. (End)
E.g.f.: x*(24 + x)*exp(x). - G. C. Greubel, Mar 14 2022
MATHEMATICA
Table[n (n + 23), {n, 0, 50}] (* Bruno Berselli, Sep 03 2018 *)
PROG
(PARI) a(n)=n*(n+23) \\ Charles R Greathouse IV, Jun 17 2017
(Sage) [n*(n+23) for n in (0..50)] # G. C. Greubel, Mar 14 2022
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Aug 28 2007
STATUS
approved
a(n) = n*(n + 19).
+10
13
0, 20, 42, 66, 92, 120, 150, 182, 216, 252, 290, 330, 372, 416, 462, 510, 560, 612, 666, 722, 780, 840, 902, 966, 1032, 1100, 1170, 1242, 1316, 1392, 1470, 1550, 1632, 1716, 1802, 1890, 1980, 2072, 2166, 2262, 2360, 2460, 2562, 2666, 2772, 2880, 2990, 3102, 3216
OFFSET
0,2
LINKS
FORMULA
a(n) = 2*n + a(n-1) + 18 for n > 0, a(0) = 0. - Vincenzo Librandi, Aug 03 2010
From Chai Wah Wu, Dec 17 2016: (Start)
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n > 2.
G.f.: 2*x*(10 - 9*x)/(1-x)^3. (End)
a(n) = 2*A051942(n+9). - R. J. Mathar, Sep 05 2018
From Amiram Eldar, Jan 16 2021: (Start)
Sum_{n>=1} 1/a(n) = H(19)/19 = A001008(19)/A102928(19) = 275295799/1474352880, where H(k) is the k-th harmonic number.
Sum_{n>=1} (-1)^(n+1)/a(n) = 2*log(2)/19 - 33464927/884611728. (End)
E.g.f.: x*(20 + x)*exp(x). - G. C. Greubel, Mar 14 2022
MATHEMATICA
Table[n (n + 19), {n, 0, 50}] (* Bruno Berselli, Sep 05 2018 *)
LinearRecurrence[{3, -3, 1}, {0, 20, 42}, 60] (* Harvey P. Dale, Jun 03 2021 *)
PROG
(PARI) a(n)=n*(n+19) \\ Charles R Greathouse IV, Jun 17 2017
(Sage) [n*(n+19) for n in (0..50)] # G. C. Greubel, Mar 14 2022
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Aug 28 2007
STATUS
approved
a(n) = n*(n+22).
+10
13
0, 23, 48, 75, 104, 135, 168, 203, 240, 279, 320, 363, 408, 455, 504, 555, 608, 663, 720, 779, 840, 903, 968, 1035, 1104, 1175, 1248, 1323, 1400, 1479, 1560, 1643, 1728, 1815, 1904, 1995, 2088, 2183, 2280, 2379, 2480, 2583, 2688, 2795, 2904, 3015, 3128, 3243, 3360
OFFSET
0,2
LINKS
FORMULA
a(n) = n*(n + 22).
a(n) = 2*n + a(n-1) + 21 (with a(0)=0). - Vincenzo Librandi, Aug 03 2010
a(0)=0, a(1)=23, a(2)=48, a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Harvey P. Dale, May 02 2012
From Amiram Eldar, Jan 16 2021: (Start)
Sum_{n>=1} 1/a(n) = H(22)/22 = A001008(22)/A102928(22) = 19093197/113809696, where H(k) is the k-th harmonic number.
Sum_{n>=1} (-1)^(n+1)/a(n) = 156188887/5121436320. (End)
From G. C. Greubel, Mar 14 2022: (Start)
G.f.: x*(23 - 21*x)/(1-x)^3.
E.g.f.: x*(23 + x)*exp(x). (End)
EXAMPLE
a(1)=2*1+0+21=23; a(2)=2*2+23+21=48; a(3)=2*3+48+21=75. - Vincenzo Librandi, Aug 03 2010
MATHEMATICA
Table[n(n+22), {n, 0, 50}] (* or *) LinearRecurrence[{3, -3, 1}, {0, 23, 48}, 50] (* Harvey P. Dale, May 02 2012 *)
PROG
(PARI) a(n)=n*(n+22) \\ Charles R Greathouse IV, Oct 07 2015
(Sage) [n*(n+22) for n in (0..50)] # G. C. Greubel, Mar 14 2022
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, Aug 28 2007
STATUS
approved
a(n) = n*(n+21).
+10
12
0, 22, 46, 72, 100, 130, 162, 196, 232, 270, 310, 352, 396, 442, 490, 540, 592, 646, 702, 760, 820, 882, 946, 1012, 1080, 1150, 1222, 1296, 1372, 1450, 1530, 1612, 1696, 1782, 1870, 1960, 2052, 2146, 2242, 2340, 2440, 2542, 2646, 2752, 2860, 2970, 3082, 3196, 3312
OFFSET
0,2
LINKS
FORMULA
a(n) = n*(n + 21).
a(n) = 2*n + a(n-1) + 20 (with a(0)=0). - Vincenzo Librandi, Aug 03 2010
a(0)=0, a(1)=22, a(2)=46, a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Harvey P. Dale, May 25 2014
From Amiram Eldar, Jan 16 2021: (Start)
Sum_{n>=1} 1/a(n) = H(21)/21 = A001008(21)/A102928(21) = 18858053/108636528, where H(k) is the k-th harmonic number.
Sum_{n>=1} (-1)^(n+1)/a(n) = 2*log(2)/21 - 166770367/4888643760. (End)
From Stefano Spezia, Jan 30 2021: (Start)
O.g.f.: 2*x*(11 - 10*x)/(1 - x)^3.
E.g.f.: x*(22 + x)*exp(x). (End)
MATHEMATICA
Table[n(n+21), {n, 0, 50}] (* or *) LinearRecurrence[{3, -3, 1}, {0, 22, 46}, 50] (* Harvey P. Dale, May 25 2014 *)
PROG
(PARI) a(n)=n*(n+21) \\ Charles R Greathouse IV, Oct 07 2015
(Sage) [n*(n+21) for n in (0..50)] # G. C. Greubel, Mar 14 2022
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, Aug 28 2007
STATUS
approved
a(n) = n*(n+24).
+10
12
0, 25, 52, 81, 112, 145, 180, 217, 256, 297, 340, 385, 432, 481, 532, 585, 640, 697, 756, 817, 880, 945, 1012, 1081, 1152, 1225, 1300, 1377, 1456, 1537, 1620, 1705, 1792, 1881, 1972, 2065, 2160, 2257, 2356, 2457, 2560, 2665, 2772, 2881, 2992, 3105, 3220, 3337
OFFSET
0,2
LINKS
FORMULA
a(n) = n*(n + 24).
a(n) = 2*n + a(n-1) + 23 (with a(0)=0). - Vincenzo Librandi, Aug 03 2010
a(0)=0, a(1)=25, a(2)=52; for n>2, a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Harvey P. Dale, Feb 11 2016
From Amiram Eldar, Jan 16 2021: (Start)
Sum_{n>=1} 1/a(n) = H(24)/24 = A001008(24)/A102928(24) = 1347822955/8566766208, where H(k) is the k-th harmonic number.
Sum_{n>=1} (-1)^(n+1)/a(n) = 3602044091/128501493120. (End)
From G. C. Greubel, Mar 14 2022: (Start)
G.f.: 2*x*(13 - 12*x)/(1-x)^3.
E.g.f.: x*(26 + x)*exp(x). (End)
MATHEMATICA
Table[n (n + 24), {n, 0, 50}] (* or *) LinearRecurrence[{3, -3, 1}, {0, 25, 52}, 50] (* Harvey P. Dale, Feb 11 2016 *)
PROG
(PARI) a(n)=n*(n+24) \\ Charles R Greathouse IV, Jun 17 2017
(Sage) [n*(n+24) for n in (0..50)] # G. C. Greubel, Mar 14 2022
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, Aug 28 2007
STATUS
approved

Search completed in 0.018 seconds