|
| |
|
|
A051866
|
|
14-gonal (or tetradecagonal) numbers: n(6n-5).
|
|
9
| |
|
|
0, 1, 14, 39, 76, 125, 186, 259, 344, 441, 550, 671, 804, 949, 1106, 1275, 1456, 1649, 1854, 2071, 2300, 2541, 2794, 3059, 3336, 3625, 3926, 4239, 4564, 4901, 5250, 5611, 5984, 6369, 6766, 7175, 7596, 8029, 8474, 8931, 9400, 9881, 10374
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,3
|
|
|
REFERENCES
| A. H. Beiler, Recreations in the Theory of Numbers, Dover, N.Y., 1964, p. 189.
|
|
|
LINKS
| T. D. Noe, Table of n, a(n) for n=0..1000
Index to sequences with linear recurrences with constant coefficients, signature (3,-3,1).
|
|
|
FORMULA
| a(n)=n(6n-5).
G.f.: x*(1+11*x)/(1-x)^3. - Bruno Berselli, Feb 04 2011
a(n)=12*n+a(n-1)-11 (with a(0)=0) [From Vincenzo Librandi (vincenzo.librandi(AT)tin.it), Aug 06 2010]
|
|
|
EXAMPLE
| a(1)=12*1+0-11=1; a(2)=12*2+1-11=14; a(3)=12*3+14-11=39 [From Vincenzo Librandi (vincenzo.librandi(AT)tin.it), Aug 06 2010]
|
|
|
MAPLE
| A051866 := proc(n) n*(6*n-5) ; end proc: seq(A051866(n), n=0..30) ; # R. J. Mathar, Feb 05 2011
|
|
|
MATHEMATICA
| s=0; lst={s}; Do[s+=n++ +1; AppendTo[lst, s], {n, 0, 6!, 12}]; lst [From Vladimir Orlovsky (4vladimir(AT)gmail.com), Nov 15 2008]
|
|
|
CROSSREFS
| Cf. n-gonal numbers: A000217, A000290, A000326, A000566, A000567, A001106, A001107, A051682, A051624, A051865-A051876.
Sequence in context: A044091 A044472 A178564 * A162266 A181149 A019063
Adjacent sequences: A051863 A051864 A051865 * A051867 A051868 A051869
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| N. J. A. Sloane (njas(AT)research.att.com), Dec 15 1999
|
| |
|
|