[go: up one dir, main page]

login
Search: a254871 -id:a254871
     Sort: relevance | references | number | modified | created      Format: long | short | data
Fourth difference of fifth powers (A000584).
+10
7
1, 28, 121, 240, 360, 480, 600, 720, 840, 960, 1080, 1200, 1320, 1440, 1560, 1680, 1800, 1920, 2040, 2160, 2280, 2400, 2520, 2640, 2760, 2880, 3000, 3120, 3240, 3360, 3480, 3600, 3720, 3840, 3960, 4080, 4200, 4320, 4440, 4560, 4680, 4800, 4920, 5040, 5160, 5280
OFFSET
1,2
COMMENTS
Original Name: Shells (nexus numbers) of shells of shells of shells of the power of 5.
The (Worpitzky/Euler/Pascal Cube) "MagicNKZ" algorithm is: MagicNKZ(n,k,z) = Sum_{j=0..k+1} (-1)^j*binomial(n + 1 - z, j)*(k - j + 1)^n, with k>=0, n>=1, z>=0. MagicNKZ is used to generate the n-th accumulation sequence of the z-th row of the Euler Triangle (A008292). For example, MagicNKZ(3,k,0) is the 3rd row of the Euler Triangle (followed by zeros) and MagicNKZ(10,k,1) is the partial sums of the 10th row of the Euler Triangle. This sequence is MagicNKZ(5,k-1,2).
LINKS
D. J. Pengelley, The bridge between the continuous and the discrete via original sources in Study the Masters: The Abel-Fauvel Conference [pdf], Kristiansand, 2002, (ed. Otto Bekken et al), National Center for Mathematics Education, University of Gothenburg, Sweden, in press.
Eric Weisstein, Link to section of MathWorld: Worpitzky's Identity of 1883
Eric Weisstein, Link to section of MathWorld: Eulerian Number
Eric Weisstein, Link to section of MathWorld: Nexus number
Eric Weisstein, Link to section of MathWorld: Finite Differences
FORMULA
a(k+1) = Sum_{j=0..k+1} (-1)^j*binomial(n + 1 - z, j)*(k - j + 1)^n; n = 5, z = 2.
For k>3, a(k) = Sum_{j=0..4} (-1)^j*binomial(4, j)*(k - j)^5 = 120*(k - 2).
a(n) = 2*a(n-1) - a(n-2), n>5. G.f.: x*(1+26*x+66*x^2+26*x^3+x^4) / (1-x)^2. - Colin Barker, Mar 01 2012
MATHEMATICA
MagicNKZ=Sum[(-1)^j*Binomial[n+1-z, j]*(k-j+1)^n, {j, 0, k+1}]; Table[MagicNKZ, {n, 5, 5}, {z, 2, 2}, {k, 0, 34}]
CoefficientList[Series[(1 + 26 x + 66 x^2 + 26 x^3 + x^4)/(1 - x)^2, {x, 0, 50}], x] (* Vincenzo Librandi, May 07 2015 *)
Join[{1, 28, 121, 240}, Differences[Range[50]^5, 4]] (* or *) LinearRecurrence[{2, -1}, {1, 28, 121, 240, 360}, 50] (* Harvey P. Dale, Jun 11 2016 *)
PROG
(Sage) [1, 28, 121]+[120*(k-2) for k in range(4, 36)] # Danny Rorabaugh, Apr 23 2015
(Magma) I:=[1, 28, 121, 240, 360]; [n le 5 select I[n] else 2*Self(n-1)-Self(n-2): n in [1..50]]; // Vincenzo Librandi, May 07 2015
(PARI) a(n)=if(n>3, 120*n-240, 33*n^2-72*n+40) \\ Charles R Greathouse IV, Oct 11 2015
CROSSREFS
Fourth differences of A000584, third differences of A022521, second differences of A101098, and first differences of A101096.
For other sequences based upon MagicNKZ(n,k,z):
...... | n = 1 | n = 2 | n = 3 | n = 4 | n = 5 | n = 6 | n = 7 | n = 8
--------------------------------------------------------------------------------------
z = 0 | A000007 | A019590 | ....... MagicNKZ(n,k,0) = T(n,k+1) from A008292 .......
z = 1 | A000012 | A040000 | A101101 | A101104 | A101100 | ....... | ....... | .......
z = 2 | A000027 | A005408 | A008458 | A101103 | thisSeq | ....... | ....... | .......
z = 3 | A000217 | A000290 | A003215 | A005914 | A101096 | ....... | ....... | .......
z = 4 | A000292 | A000330 | A000578 | A005917 | A101098 | ....... | ....... | .......
z = 5 | A000332 | A002415 | A000537 | A000583 | A022521 | ....... | A255181 | .......
z = 12 | A001288 | A057788 | ....... | A254870 | A254471 | A254683 | A254646 | A254642
z = 13 | A010965 | ....... | ....... | ....... | A254871 | A254472 | A254684 | A254647
z = 14 | A010966 | ....... | ....... | ....... | ....... | A254872 | ....... | .......
--------------------------------------------------------------------------------------
Cf. A047969.
KEYWORD
easy,nonn
AUTHOR
Cecilia Rossiter, Dec 15 2004
EXTENSIONS
MagicNKZ material edited, Crossrefs table added, SeriesAtLevelR material removed by Danny Rorabaugh, Apr 23 2015
Name changed and keyword 'uned' removed by Danny Rorabaugh, May 06 2015
STATUS
approved
Seventh partial sums of cubes (A000578).
+10
5
1, 15, 111, 561, 2211, 7293, 21021, 54483, 129558, 286858, 598026, 1184118, 2242266, 4083366, 7184166, 12257850, 20348031, 32951985, 52179985, 80958735, 123288165, 184562235, 271965915, 394962165, 565884540, 800652996, 1119632580, 1548656956
OFFSET
1,2
FORMULA
G.f.: x*(1 + 4*x + x^2)/(1 - x)^11.
a(n) = n*(1 + n)*(2 + n)*(3 + n)*(4 + n)*(5 + n)*(6 + n)*(7 + n)*(7 + 7*n + n^2)/604800.
a(n) = 7*a(n-1) - 21*a(n-2) + 35*a(n-3) - 35*a(n-4) + 21*a(n-5) - 7*a(n-6) + a(n-7) + n^3.
Sum_{n>=1} 1/a(n) = 1920*sqrt(3/7)*Pi*tan(sqrt(21)*Pi/2) - 251488/49. - Amiram Eldar, Jan 26 2022
EXAMPLE
2nd differences: 0, 6, 12, 18, 24, 30, ... (A008588)
1st differences: 1, 7, 19, 37, 61, 91, ... (A003215)
-------------------------------------------------------------------
The cubes: 1, 8, 27, 64, 125, 216, ... (A000578)
-------------------------------------------------------------------
1st partial sums: 1, 9, 36, 100, 225, 441, ... (A000537)
2nd partial sums: 1, 10, 46, 146, 371, 812, ... (A024166)
3rd partial sums: 1, 11, 57, 203, 574, 1386, ... (A101094)
4th partial sums: 1, 12, 69, 272, 846, 2232, ... (A101097)
5th partial sums: 1, 13, 82, 354, 1200, 3432, ... (A101102)
6th partial sums: 1, 14, 96, 450, 1650, 5082, ... (A254469)
7th partial sums: 1, 15, 111, 561, 2211, 7293, ... (this sequence)
MATHEMATICA
Table[n (1 + n) (2 + n) (3 + n) (4 + n) (5 + n) (6 + n) (7 + n) (7 + 7 n + n^2)/604800, {n, 26}] (* or *)
CoefficientList[Series[(- 1 - 4 x - x^2)/(- 1 + x)^11, {x, 0, 25}], x]
Nest[Accumulate, Range[30]^3, 7] (* or *) LinearRecurrence[{11, -55, 165, -330, 462, -462, 330, -165, 55, -11, 1}, {1, 15, 111, 561, 2211, 7293, 21021, 54483, 129558, 286858, 598026}, 30] (* Harvey P. Dale, Apr 24 2017 *)
PROG
(PARI) vector(50, n, n*(1 + n)*(2 + n)*(3 + n)*(4 + n)*(5 + n)*(6 + n)*(7 + n)*(7 + 7*n + n^2)/604800) \\ Derek Orr, Feb 19 2015
(Magma) [n*(1+n)*(2+n)*(3+n)*(4+n)*(5+n)*(6+n)*(7+n)*(7+7*n+n^2)/604800: n in [1..30]]; // Vincenzo Librandi, Feb 19 2015
KEYWORD
nonn,easy
AUTHOR
Luciano Ancora, Feb 17 2015
STATUS
approved
Seventh partial sums of fourth powers (A000583).
+10
5
1, 23, 221, 1355, 6239, 23465, 75803, 217373, 566150, 1361802, 3063502, 6508450, 13159666, 25481470, 47493274, 85567222, 149553199, 254336185, 421956275, 684451365, 1087616985, 1695917535, 2598828765, 3918943275, 5822229660, 8530902276, 12339433068
OFFSET
1,2
FORMULA
G.f.: (x + 11*x^2 + 11*x^3 + x^4)/(- 1 + x)^12.
a(n) = n*(1 + n)*(2 + n)*(3 + n)*(4 + n)*(5 + n)*(6 + n)*(7 + n)*(7 + 2*n)*(7 + 42*n + 6*n^2)/19958400.
a(n) = 7*a(n-1) - 21*a(n-2) + 35*a(n-3) - 35*a(n-4) + 21*a(n-5) - 7*a(n-6) + a(n-7) + n^4.
EXAMPLE
Second differences: 2, 14, 50, 110, 194, 302, ... A120328(2k+1)
First differences: 1, 15, 65, 175, 369, 671, ... A005917
--------------------------------------------------------------------------
The fourth powers: 1, 16, 81, 256, 625, 1296, ... A000583
--------------------------------------------------------------------------
First partial sums: 1, 17, 98, 354, 979, 2275, ... A000538
Second partial sums: 1, 18, 116, 470, 1449, 3724, ... A101089
Third partial sums: 1, 19, 135, 605, 2054, 5778, ... A101090
Fourth partial sums: 1, 20, 155, 760, 2814, 8592, ... A101091
Fifth partial sums: 1, 21, 176, 936, 3750, 12342, ... A254681
Sixth partial sums: 1, 22, 198, 1134, 4884, 17226, ... A254470
Seventh partial sums: 1, 23, 221, 1355, 6239, 23465, ... (this sequence)
MATHEMATICA
Table[n (1 + n) (2 + n) (3 + n) (4 + n) (5 + n) (6 + n) (7 + n) (7 + 2 n)((7 + 42 n + 6 n^2)/19958400), {n, 24}] (* or *)
CoefficientList[Series[(1 + 11 x + 11 x^2 + x^3)/(- 1 + x)^12, {x, 0, 23}], x]
PROG
(PARI) vector(50, n, n*(1 + n)*(2 + n)*(3 + n)*(4 + n)*(5 + n)*(6 + n)*(7 + n)*(7 + 2*n)*(7 + 42*n + 6*n^2)/19958400) \\ Derek Orr, Feb 19 2015
(Magma) [n*(1+n)*(2+n)*(3+n)*(4+n)*(5+n)*(6+n)*(7+n)*(7+2*n)*(7 +42*n+6*n^2)/19958400: n in [1..30]]; // Vincenzo Librandi, Feb 19 2015
KEYWORD
nonn,easy
AUTHOR
Luciano Ancora, Feb 17 2015
STATUS
approved
Seventh partial sums of sixth powers (A001014).
+10
5
1, 71, 1205, 11075, 70295, 345857, 1409387, 4962365, 15539750, 44192010, 115917118, 283828498, 654885730, 1434717550, 3002927770, 6035661334, 11699568079, 21951176425, 39988722875, 70920437325, 122735050305
OFFSET
1,2
FORMULA
G.f.: (x + 57*x^2 + 302*x^3 + 302*x^4 + 57*x^5 + x^6)/(- 1 + x)^14.
a(n) = (n*(1 + n)*(2 + n)*(3 + n)*(4 + n)*(5 + n)*(6 + n)*(7 + n)*(7 + 2*n)*(- 49 + 147*n^2 + 42*n^3 + 3*n^4))/51891840.
a(n) = 7*a(n-1) - 21*a(n-2) + 35*a(n-3) - 35*a(n-4) + 21*a(n-5) - 7*a(n-6) + a(n-7) + n^6.
EXAMPLE
First differences: 1, 63, 665, 3367, 11529, ... (A022522)
--------------------------------------------------------------------
The sixth powers: 1, 64, 729, 4096, 15625, ... (A001014)
--------------------------------------------------------------------
First partial sums: 1, 65, 794, 4890, 20515, ... (A000540)
Second partial sums: 1, 66, 860, 5750, 26265, ... (A101093)
Third partial sums: 1, 67, 927, 6677, 32942, ... (A254640)
Fourth partial sums: 1, 68, 995, 7672, 40614, ... (A254645)
Fifth partial sums: 1, 69, 1064, 8736, 49350, ... (A254683)
Sixth partial sums: 1, 70, 1134, 9870, 59220, ... (A254472)
Seventh partial sums: 1, 71, 1205, 11075, 70295, ... (this sequence)
MATHEMATICA
Table[(n (1 + n) (2 + n) (3 + n) (4 + n) (5 + n) (6 + n) (7 + n) (7 + 2 n) (- 49 + 147 n^2 + 42 n^3 + 3 n^4))/51891840, {n, 21}] (* or *)
CoefficientList[Series[(1 + 57 x + 302 x^2 + 302 x^3 + 57 x^4 + x^5)/(- 1 + x)^14, {x, 0, 20}], x]
KEYWORD
nonn,easy
AUTHOR
Luciano Ancora, Feb 17 2015
STATUS
approved

Search completed in 0.010 seconds