login
A359096
The sum of the numbers on the perimeter of the n X n diamond frame, located at the top of the numerical pyramid containing the positive integers in natural order.
1
1, 11, 46, 121, 252, 455, 746, 1141, 1656, 2307, 3110, 4081, 5236, 6591, 8162, 9965, 12016, 14331, 16926, 19817, 23020, 26551, 30426, 34661, 39272, 44275, 49686, 55521, 61796, 68527, 75730, 83421, 91616, 100331, 109582, 119385, 129756, 140711, 152266, 164437, 177240, 190691
OFFSET
1,2
COMMENTS
The numerical pyramid is constructed from natural numbers as follows: the first line contains the number 1, the second line contains the numbers 2 and 3, the third line contains the next three numbers, and so on.
FORMULA
a(n) = (8*n^3 - 12*n^2 + 13*n - 9)/3, where n > 1.
G.f.: x*(1 + 7*x + 8*x^2 - x^3 + x^4)/(1 - x)^4. - Stefano Spezia, Dec 16 2022
EXAMPLE
For n = 4 we have a numerical pyramid with numbers from 1 to 36 and its diamond frame, and the sum of the numbers that lie along the frame is a(4):
.
1
/ \
2 3
/ \
4 5 6
/ \
7 8 9 10
\ /
11 12 13 14 15
\ /
16 17 18 19 20 21
\ /
22 23 24 25 26 27 28
.
a(4) = 1 + 2 + 3 + 4 + 6 + 7 + 10 + 12 + 14 + 18 + 19 + 25 = 121.
CROSSREFS
Sequence in context: A081587 A377663 A223834 * A143059 A224142 A155014
KEYWORD
nonn,easy
AUTHOR
Nicolay Avilov, Dec 16 2022
STATUS
approved