OFFSET
0,3
COMMENTS
Mean of the first four nonnegative powers of 2n+1, i.e., ((2n+1)^0 + (2n+1)^1 + (2n+1)^2 + (2n+1)^3)/4. E.g., a(2) = (1 + 3 + 9 + 27)/4 = 10.
Equatorial structured meta-diamond numbers, the n-th number from an equatorial structured n-gonal diamond number sequence. There are no 1- or 2-gonal diamonds, so 1 and (n+2) are used as the first and second terms since all the sequences begin as such. - James A. Record (james.record(AT)gmail.com), Nov 07 2004
Starting with offset 1 = row sums of triangle A143803. - Gary W. Adamson, Sep 01 2008
Form an array from the antidiagonals containing the terms in A002061 to give antidiagonals 1; 3,3; 7,4,7; 13,8,8,13; 21,14,9,14,21; and so on. The difference between the sum of the terms in n+1 X n+1 matrices and those in n X n matrices is a(n) for n>0. - J. M. Bergot, Jul 08 2013
Sum of the numbers from (n-1)^2 to n^2. - Wesley Ivan Hurt, Sep 08 2014
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..1000
Bruno Berselli, Table of sequences with the formula m*(m+1)^2 - (k+2)*m^2 (table includes this sequence for k = 2-m, m >= 0).
Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
FORMULA
a(n) = A053698(2*n-1)/4.
a(n) = Sum_{j=1..n} ((n+j-1)^2-j^2+1). - Zerinvary Lajos, Sep 13 2006
From R. J. Mathar, Sep 02 2008: (Start)
G.f.: x*(1 + x)*(1 + 5*x)/(1 - x)^4.
a(n+1) - a(n) = A136392(n+1). (End)
E.g.f.: exp(x)*x*(1 + 4*x + 2*x^2). - Stefano Spezia, Jun 20 2021
MAPLE
MATHEMATICA
Table[n (2 n^2 - 2 n + 1), {n, 0, 50}] (* Wesley Ivan Hurt, Sep 08 2014 *)
PROG
(PARI) a(n) = { n*(2*n^2 - 2*n + 1) } \\ Harry J. Smith, Jun 28 2009
(Magma) [n*(2*n^2 - 2*n + 1) : n in [0..50]]; // Wesley Ivan Hurt, Sep 08 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Henry Bottomley, Feb 07 2001
EXTENSIONS
Edited with new definition by N. J. A. Sloane, Aug 29 2008
STATUS
approved