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!)
A264445 a(n) = n*(n + 11)*(n + 22)/6. 7
0, 46, 104, 175, 260, 360, 476, 609, 760, 930, 1120, 1331, 1564, 1820, 2100, 2405, 2736, 3094, 3480, 3895, 4340, 4816, 5324, 5865, 6440, 7050, 7696, 8379, 9100, 9860, 10660, 11501, 12384, 13310, 14280, 15295, 16356, 17464, 18620, 19825, 21080 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
It is well-known, and easy to prove, that the product of 3 consecutive integers n*(n + 1)*(n + 2) is divisible by 6. It can be shown that the product of 3 integers in arithmetic progression n*(n + r)*(n + 2*r) is divisible by 6 if and only if r is not divisible by 2 or 3 (see A007310 for these numbers). This is the case r = 11.
LINKS
FORMULA
O.g.f.: x*(35*x^2 - 80*x + 46)/(1 - x)^4.
a(n) = 4*a(n-1)-6*a(n-2)+4*a(n-3)-a(n-4) for n>3. - Vincenzo Librandi, Nov 16 2015
MAPLE
seq( n*(n + 11)*(n + 22)/6, n = 0..40 );
MATHEMATICA
Table[n (n + 11) (n + 22)/6, {n, 0, 40}] (* Vincenzo Librandi, Nov 16 2015 *)
LinearRecurrence[{4, -6, 4, -1}, {0, 46, 104, 175}, 50] (* Harvey P. Dale, Dec 11 2018 *)
PROG
(PARI) vector(100, n, n--; n*(n+11)*(n+22)/6) \\ Altug Alkan, Nov 15 2015
(Magma) [n*(n+11)*(n+22)/6: n in [0..40]]; // Vincenzo Librandi, Nov 16 2015
CROSSREFS
Sequence in context: A119417 A287767 A050961 * A248529 A204769 A333040
KEYWORD
nonn,easy
AUTHOR
Peter Bala, Nov 13 2015
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 April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)