A288486 Square rings obtained by adding four identical cuboids from A169938, a(n) = 4*n*(n+1)*(n*(n+1)+1).
0, 24, 168, 624, 1680, 3720, 7224, 12768, 21024, 32760, 48840, 70224, 97968, 133224, 177240, 231360, 297024, 375768, 469224, 579120, 707280, 855624, 1026168, 1221024, 1442400, 1692600, 1974024, 2289168, 2640624, 3031080, 3463320, 3940224, 4464768, 5040024
Offset: 0
Links
- Daniel Poveda Parrilla, Table of n, a(n) for n = 0..10000
- Daniel Poveda Parrilla, Illustration of initial terms
- Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
Programs
-
Mathematica
Table[4 n (n + 1) (n^2 + n + 1), {n, 0, 28}] (* or *) CoefficientList[Series[24 (x + 2 x^2 + x^3)/(1 - x)^5, {x, 0, 28}], x] (* or *) LinearRecurrence[{5, -10, 10, -5, 1}, {0, 24, 168, 624, 1680}, 29]
-
PARI
Vec(24*(x + 2*x^2 + x^3)/(1 - x)^5 + O(x^28))
Comments