A004188
a(n) = n*(3*n^2 - 1)/2.
Original entry on oeis.org
0, 1, 11, 39, 94, 185, 321, 511, 764, 1089, 1495, 1991, 2586, 3289, 4109, 5055, 6136, 7361, 8739, 10279, 11990, 13881, 15961, 18239, 20724, 23425, 26351, 29511, 32914, 36569, 40485, 44671, 49136, 53889, 58939, 64295, 69966, 75961
Offset: 0
Albert D. Rich (Albert_Rich(AT)msn.com)
- E. Deza and M. M. Deza, Figurate numbers, World Scientific Publishing (2012), page 140.
- T. P. Martin, Shells of atoms, Phys. Reports, 273 (1996), 199-241, eq. (11).
1/12*t*(n^3-n)+n for t = 2, 4, 6, ... gives
A004006,
A006527,
A006003,
A005900,
A004068,
A000578,
A004126,
A000447,
A004188,
A004466,
A004467,
A007588,
A062025,
A063521,
A063522,
A063523.
-
[n*(3*n^2-1)/2: n in [0..50]]; //Vincenzo Librandi, May 15 2011
-
seq(binomial(2*n+1,3)+binomial(n+1,3), n=0..37); # Zerinvary Lajos, Jan 21 2007
-
Table[n(3n^2-1)/2,{n,0,80}] (* Vladimir Joseph Stephan Orlovsky, Apr 18 2011 *)
LinearRecurrence[{4,-6,4,-1},{0,1,11,39},40] (* Harvey P. Dale, Jul 19 2019 *)
-
vector(40, n, n*(3*n^2-1)/2)
A006322
4-dimensional analog of centered polygonal numbers.
Original entry on oeis.org
1, 8, 31, 85, 190, 371, 658, 1086, 1695, 2530, 3641, 5083, 6916, 9205, 12020, 15436, 19533, 24396, 30115, 36785, 44506, 53383, 63526, 75050, 88075, 102726, 119133, 137431, 157760, 180265, 205096, 232408, 262361, 295120, 330855, 369741, 411958, 457691, 507130
Offset: 1
Albert Rich (Albert_Rich(AT)msn.com)
An illustration for a(5)=190: 5*(1+2+3+4+5)+4*(2+3+4+5)+3*(3+4+5)+2*(4+5)+1*(5) gives 75+56+36+18+5=190. - _J. M. Bergot_, Feb 13 2018
- S. J. Cyvin and I. Gutman, Kekulé structures in benzenoid hydrocarbons, Lecture Notes in Chemistry, No. 46, Springer, New York, 1988 (see p. 166, Table 10.4/I/4).
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
- Abderrahim Arabi, Hacène Belbachir, and Jean-Philippe Dubernard, Plateau Polycubes and Lateral Area, arXiv:1811.05707 [math.CO], 2018. See Column 2 Table 2 p. 9.
- Manfred Goebel, Rewriting Techniques and Degree Bounds for Higher Order Symmetric Polynomials, Applicable Algebra in Engineering, Communication and Computing (AAECC), Volume 9, Issue 6 (1999), 559-573.
- R. P. Stanley, Examples of Magic Labelings, Unpublished Notes, 1973 [Cached copy, with permission]. See p. 31.
- Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
-
List([1..40], n->5*Binomial(n+2,4) + Binomial(n+1,2)); # Muniru A Asiru, Feb 13 2018
-
[n*(n+1)*(5*n^2 +5*n +2)/24: n in [1..40]]; // G. C. Greubel, Sep 02 2019
-
a:=n->5*binomial(n+2,4) + binomial(n+1,2): seq(a(n), n=1..40); # Muniru A Asiru, Feb 13 2018
-
Table[5*Binomial[n+2, 4] + Binomial[n+1, 2], {n, 40}] (* Vladimir Joseph Stephan Orlovsky, Apr 18 2011 *)
CoefficientList[Series[(1+3x+x^2)/(1-x)^5, {x,0,40}], x] (* Vincenzo Librandi, Jun 09 2013 *)
LinearRecurrence[{5,-10,10,-5,1},{1,8,31,85,190},40] (* Harvey P. Dale, Sep 27 2016 *)
-
a(n)=n*(5*n^3+10*n^2+7*n+2)/24 \\ Charles R Greathouse IV, Dec 13 2011, corrected by Altug Alkan, Aug 15 2017
-
[n*(n+1)*(5*n^2 +5*n +2)/24 for n in (1..40)] # G. C. Greubel, Sep 02 2019
A004466
a(n) = n*(5*n^2 - 2)/3.
Original entry on oeis.org
0, 1, 12, 43, 104, 205, 356, 567, 848, 1209, 1660, 2211, 2872, 3653, 4564, 5615, 6816, 8177, 9708, 11419, 13320, 15421, 17732, 20263, 23024, 26025, 29276, 32787, 36568, 40629, 44980, 49631, 54592
Offset: 0
Albert D. Rich (Albert_Rich(AT)msn.com)
- E. Deza and M. M. Deza, Figurate numbers, World Scientific Publishing (2012), page 140.
- Vincenzo Librandi, Table of n, a(n) for n = 0..5000
- T. P. Martin, Shells of atoms, Phys. Reports, 273 (1996), 199-241, eq. (11).
- Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
1/12*t*(n^3-n)+n for t = 2, 4, 6, ... gives
A004006,
A006527,
A006003,
A005900,
A004068,
A000578,
A004126,
A000447,
A004188,
A004466,
A004467,
A007588,
A062025,
A063521,
A063522,
A063523.
A063521
a(n) = n*(7*n^2-4)/3.
Original entry on oeis.org
0, 1, 16, 59, 144, 285, 496, 791, 1184, 1689, 2320, 3091, 4016, 5109, 6384, 7855, 9536, 11441, 13584, 15979, 18640, 21581, 24816, 28359, 32224, 36425, 40976, 45891, 51184, 56869, 62960, 69471, 76416, 83809, 91664, 99995, 108816, 118141, 127984, 138359, 149280, 160761
Offset: 0
- Harry J. Smith, Table of n, a(n) for n = 0..1000
- T. P. Martin, Shells of atoms, Phys. Reports, 273 (1996), 199-241, eq. (11).
- Index entries for linear recurrences with constant coefficients, signature (4, -6, 4, -1).
1/12*t*(n^3-n)+n for t = 2, 4, 6, ... gives
A004006,
A006527,
A006003,
A005900,
A004068,
A000578,
A004126,
A000447,
A004188,
A004466,
A004467,
A007588,
A062025,
A063521,
A063522,
A063523.
-
A063521:=n->n*(7*n^2-4)/3; seq(A063521(k), k=0..100); # Wesley Ivan Hurt, Oct 24 2013
-
lst={};Do[AppendTo[lst, n*(7*n^2-4)/3], {n, 1, 6!}];lst (* Vladimir Joseph Stephan Orlovsky, Sep 02 2008 *)
CoefficientList[Series[x*(1+12*x+x^2)/(1-x)^4, {x, 0, 50}], x] (* G. C. Greubel, Sep 01 2017 *)
-
a(n) = { n*(7*n^2 - 4)/3 } \\ Harry J. Smith, Aug 25 2009
A004126
a(n) = n*(7*n^2 - 1)/6.
Original entry on oeis.org
0, 1, 9, 31, 74, 145, 251, 399, 596, 849, 1165, 1551, 2014, 2561, 3199, 3935, 4776, 5729, 6801, 7999, 9330, 10801, 12419, 14191, 16124, 18225, 20501, 22959, 25606, 28449, 31495, 34751, 38224, 41921, 45849, 50015, 54426, 59089, 64011
Offset: 0
Albert D. Rich (Albert_Rich(AT)msn.com)
- E. Deza and M. M. Deza, Figurate numbers, World Scientific Publishing (2012), page 140.
- Vincenzo Librandi, Table of n, a(n) for n = 0..5000
- T. P. Martin, Shells of atoms, Phys. Reports, 273 (1996), 199-241, eq. (11).
- Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
1/12*t*(n^3-n)+n for t = 2, 4, 6, ... gives
A004006,
A006527,
A006003,
A005900,
A004068,
A000578,
A004126,
A000447,
A004188,
A004466,
A004467,
A007588,
A062025,
A063521,
A063522,
A063523.
-
[n*(7*n^2-1)/6: n in [0..50]]; // Vincenzo Librandi, May 15 2011
-
seq(binomial(2*n+1,3)-binomial(n+1,3), n=0..38); # Zerinvary Lajos, Jan 21 2007
-
Table[n (7 n^2 - 1)/6, {n, 0, 80}] (* Vladimir Joseph Stephan Orlovsky, Apr 18 2011 *)
-
makelist(n*(7*n^2-1)/6,n,0,30); /* Martin Ettl, Jan 08 2013 */
-
vector(100, n, n--; n*(7*n^2 - 1)/6) \\ Altug Alkan, Oct 06 2015
A063522
a(n) = n*(5*n^2 - 3)/2.
Original entry on oeis.org
0, 1, 17, 63, 154, 305, 531, 847, 1268, 1809, 2485, 3311, 4302, 5473, 6839, 8415, 10216, 12257, 14553, 17119, 19970, 23121, 26587, 30383, 34524, 39025, 43901, 49167, 54838, 60929, 67455, 74431, 81872, 89793, 98209, 107135, 116586, 126577, 137123, 148239, 159940
Offset: 0
- Harry J. Smith, Table of n, a(n) for n = 0..1000
- T. P. Martin, Shells of atoms, Phys. Reports, 273 (1996), 199-241, eq. (11).
- Index entries for linear recurrences with constant coefficients, signature (4, -6, 4, -1).
(1/12)*t*(n^3 - n) + n for t = 2, 4, 6, ... gives
A004006,
A006527,
A006003,
A005900,
A004068,
A000578,
A004126,
A000447,
A004188,
A004466,
A004467,
A007588,
A062025,
A063521,
A063522,
A063523.
-
[n*(5*n^2 -3)/2: n in [0..30]]; // G. C. Greubel, May 02 2018
-
lst={};Do[AppendTo[lst, LegendreP[3, n]], {n, 10^2}];lst (* Vladimir Joseph Stephan Orlovsky, Sep 11 2008 *)
CoefficientList[Series[x*(1 + 13*x + x^2)/(1-x)^4, {x, 0, 50}], x] (* G. C. Greubel, Sep 01 2017 *)
LinearRecurrence[{4,-6,4,-1},{0,1,17,63},40] (* Harvey P. Dale, Sep 06 2023 *)
-
a(n) = { n*(5*n^2 - 3)/2 } \\ Harry J. Smith, Aug 25 2009
A211790
Rectangular array: R(k,n) = number of ordered triples (w,x,y) with all terms in {1,...,n} and w^k
Original entry on oeis.org
1, 7, 1, 23, 7, 1, 54, 22, 7, 1, 105, 51, 22, 7, 1, 181, 97, 50, 22, 7, 1, 287, 166, 96, 50, 22, 7, 1, 428, 263, 163, 95, 50, 22, 7, 1, 609, 391, 255, 161, 95, 50, 22, 7, 1, 835, 554, 378, 253, 161, 95, 50, 22, 7, 1, 1111, 756, 534, 374, 252, 161, 95, 50, 22, 7
Offset: 1
Northwest corner:
1, 7, 23, 54, 105, 181, 287, 428, 609
1, 7, 22, 51, 97, 166, 263, 391, 554
1, 7, 22, 50, 96, 163, 255, 378, 534
1, 7, 22, 50, 95, 161, 253, 374, 528
1, 7, 22, 50, 95, 161, 252, 373, 527
For n=2 and k>=1, the 7 triples (w,x,y) are (1,1,1), (1,1,2), (1,2,1), (1,2,2), (2,1,2), (2,2,1), (2,2,2).
-
z = 48;
t[k_, n_] := Module[{s = 0},
(Do[If[w^k < x^k + y^k, s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}] &[n]; s)];
Table[t[1, n], {n, 1, z}] (* A004068 *)
Table[t[2, n], {n, 1, z}] (* A211635 *)
Table[t[3, n], {n, 1, z}] (* A211650 *)
TableForm[Table[t[k, n], {k, 1, 12}, {n, 1, 16}]]
Flatten[Table[t[k, n - k + 1], {n, 1, 12}, {k, 1, n}]] (* A211790 *)
Table[n (n + 1) (4 n - 1)/6,
{n, 1, z}] (* row-limit sequence, A002412 *)
(* Peter J. C. Moses, Apr 13 2012 *)
A004467
a(n) = n*(11*n^2 - 5)/6.
Original entry on oeis.org
0, 1, 13, 47, 114, 225, 391, 623, 932, 1329, 1825, 2431, 3158, 4017, 5019, 6175, 7496, 8993, 10677, 12559, 14650, 16961, 19503, 22287, 25324, 28625, 32201, 36063, 40222, 44689, 49475, 54591, 60048
Offset: 0
Albert D. Rich (Albert_Rich(AT)msn.com)
- E. Deza and M. M. Deza, Figurate numbers, World Scientific Publishing (2012), page 140.
- Vincenzo Librandi, Table of n, a(n) for n = 0..5000
- T. P. Martin, Shells of atoms, Phys. Reports, 273 (1996), 199-241, eq. (11).
- Index entries for linear recurrences with constant coefficients, signature (4, -6, 4, -1).
1/12*t*(n^3-n)+n for t = 2, 4, 6, ... gives
A004006,
A006527,
A006003,
A005900,
A004068,
A000578,
A004126,
A000447,
A004188,
A004466,
A004467,
A007588,
A062025,
A063521,
A063522,
A063523.
-
[n*(11*n^2-5)/6: n in [0..50]]; // Vincenzo Librandi, May 15 2011
-
Table[n(11n^2-5)/6,{n,0,80}] (* Vladimir Joseph Stephan Orlovsky, Apr 18 2011 *)
LinearRecurrence[{4,-6,4,-1},{0,1,13,47},80] (* Harvey P. Dale, Sep 22 2013 *)
-
a(n)=n*(11*n^2-5)/6 \\ Charles R Greathouse IV, Sep 28 2011
A062025
a(n) = n*(13*n^2 - 7)/6.
Original entry on oeis.org
0, 1, 15, 55, 134, 265, 461, 735, 1100, 1569, 2155, 2871, 3730, 4745, 5929, 7295, 8856, 10625, 12615, 14839, 17310, 20041, 23045, 26335, 29924, 33825, 38051, 42615, 47530, 52809, 58465, 64511, 70960, 77825, 85119, 92855, 101046, 109705, 118845, 128479, 138620, 149281
Offset: 0
- Harry J. Smith, Table of n, a(n) for n = 0..1000
- T. P. Martin, Shells of atoms, Phys. Reports, 273 (1996), 199-241, eq. (11).
- Index entries for linear recurrences with constant coefficients, signature (4, -6, 4, -1).
1/12*t*(n^3-n)+n for t = 2, 4, 6, ... gives
A004006,
A006527,
A006003,
A005900,
A004068,
A000578,
A004126,
A000447,
A004188,
A004466,
A004467,
A007588,
A062025,
A063521,
A063522,
A063523.
A063523
a(n) = n*(8*n^2 - 5)/3.
Original entry on oeis.org
0, 1, 18, 67, 164, 325, 566, 903, 1352, 1929, 2650, 3531, 4588, 5837, 7294, 8975, 10896, 13073, 15522, 18259, 21300, 24661, 28358, 32407, 36824, 41625, 46826, 52443, 58492, 64989, 71950, 79391, 87328, 95777, 104754, 114275, 124356, 135013, 146262, 158119, 170600
Offset: 0
- Harry J. Smith, Table of n, a(n) for n = 0..1000
- T. P. Martin, Shells of atoms, Phys. Reports, 273 (1996), 199-241, eq. (11).
- Index entries for linear recurrences with constant coefficients, signature (4, -6, 4, -1).
1/12*t*(n^3-n)+n for t = 2, 4, 6, ... gives
A004006,
A006527,
A006003,
A005900,
A004068,
A000578,
A004126,
A000447,
A004188,
A004466,
A004467,
A007588,
A062025,
A063521,
A063522,
A063523.
-
Table[n(8n^2-5)/3,{n,0,80}] (* Vladimir Joseph Stephan Orlovsky, Apr 18 2011 *)
LinearRecurrence[{4,-6,4,-1},{0,1,18,67},81] (* or *) CoefficientList[ Series[ (x+14 x^2+x^3)/(x-1)^4,{x,0,80}],x] (* Harvey P. Dale, Jul 11 2011 *)
-
a(n) = n*(8*n^2 - 5)/3 \\ Harry J. Smith, Aug 25 2009
Comments