login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A059291
a(n) = round((n-1)^2*(n+5)/144).
2
0, 0, 0, 0, 1, 1, 2, 3, 4, 6, 8, 11, 14, 18, 22, 27, 33, 39, 46, 54, 63, 72, 83, 94, 107, 120, 135, 150, 167, 185, 204, 225, 247, 270, 295, 321, 349, 378, 409, 441, 475, 511, 549, 588, 629, 672, 717, 764, 813, 864, 917, 972, 1030, 1089, 1151, 1215
OFFSET
0,7
REFERENCES
L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 120, see P(n,4).
LINKS
MATHEMATICA
Table[Round[(n-1)^2*(n+5)/144], {n, 0, 50}] (* G. C. Greubel, Jan 04 2017 *)
PROG
(PARI) a(n) = { round((n - 1)^2*(n + 5)/144) } \\ Harry J. Smith, Jun 25 2009
(Magma) [Round((n-1)^2*(n+5)/144): n in [0..80]]; // Vincenzo Librandi, Jan 05 2017
CROSSREFS
Sequence in context: A071764 A238381 A290743 * A177339 A075535 A238383
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 25 2001
STATUS
approved