login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A007518 a(n) = floor(n*(n+2)*(2*n-1)/8).
(Formerly M2776)
3
0, 3, 9, 21, 39, 66, 102, 150, 210, 285, 375, 483, 609, 756, 924, 1116, 1332, 1575, 1845, 2145, 2475, 2838, 3234, 3666, 4134, 4641, 5187, 5775, 6405, 7080, 7800, 8568, 9384, 10251, 11169, 12141, 13167, 14250, 15390, 16590, 17850, 19173, 20559, 22011, 23529, 25116, 26772, 28500, 30300 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
From a problem on p. 151 of J. Rec. Math., 7 (1975).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
FORMULA
a(n) = 3*A002623(n) for n>0. - M. F. Hasler, Sep 15 2009
G.f.: 3*x/((x+1)*(x-1)^4). [Maksym Voznyy (voznyy(AT)mail.ru), Aug 10 2009]
a(n) = 3*a(n-1) -2*a(n-2) -2*a(n-3) +3*a(n-4) -a(n-5) with a(1)=0, a(2)=3, a(3)=9, a(4)=21, a(5)=39. - Harvey P. Dale, Oct 06 2014
MAPLE
[seq(floor(n*(n+2)*(2*n-1)/8), n=1..50)]; # Muniru A Asiru, Mar 22 2018
MATHEMATICA
Table[Floor[(n(n+2)(2n-1))/8], {n, 50}] (* or *) LinearRecurrence[{3, -2, -2, 3, -1}, {0, 3, 9, 21, 39}, 40] (* Harvey P. Dale, Oct 06 2014 *)
PROG
(PARI) vector(50, n, n*(n+2)*(2*n-1)\8) \\ Michel Marcus, Oct 12 2014
(Magma) [Floor(n*(n+2)(2*n-1)/8): n in [1..50]]; // G. C. Greubel, Mar 21 2018
(GAP) List([1..50], n->Int(n*(n+2)*(2*n-1)/8)); # Muniru A Asiru, Mar 22 2018
CROSSREFS
Column 4 of triangle A094953.
Sequence in context: A177817 A292392 A112039 * A029494 A059774 A064999
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Offset corrected by Harvey P. Dale, Oct 06 2014
Terms a(40) onward added by G. C. Greubel, Mar 21 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 19 06:21 EDT 2024. Contains 370953 sequences. (Running on oeis4.)