cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A071246 a(n) = n*(n - 1)*(2*n^2 + n + 2)/6.

Original entry on oeis.org

0, 0, 4, 23, 76, 190, 400, 749, 1288, 2076, 3180, 4675, 6644, 9178, 12376, 16345, 21200, 27064, 34068, 42351, 52060, 63350, 76384, 91333, 108376, 127700, 149500, 173979, 201348, 231826, 265640, 303025, 344224, 389488, 439076, 493255, 552300, 616494
Offset: 0

Views

Author

N. J. A. Sloane, Jun 12 2002

Keywords

References

  • T. A. Gulliver, Sequences from Arrays of Integers, Int. Math. Journal, Vol. 1, No. 4, pp. 323-332, 2002.

Crossrefs

Programs

  • Magma
    [n*(n-1)*(2*n^2+n+2)/6: n in [0..40]]; // Vincenzo Librandi, Jun 14 2011
    
  • Mathematica
    CoefficientList[Series[-(4x^2 + 3x^3 + x^4)/(x - 1)^5, {x, 0, 50}], x] (* or *) Table[n*(n - 1)*(2*n^2 + n + 2)/6, {n, 0, 50}] (* Indranil Ghosh, Apr 05 2017 *)
  • PARI
    a(n) = n*(n - 1)*(2*n^2 + n + 2)/6; \\ Indranil Ghosh, Apr 05 2017
    
  • Python
    def a(n): return n*(n - 1)*(2*n**2 + n + 2)/6 # Indranil Ghosh, Apr 05 2017
    
  • SageMath
    def A071246(n): return binomial(n,2)*(2+n+2*n^2)//3
    [A071246(n) for n in range(41)] # G. C. Greubel, Aug 07 2024

Formula

a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5), n > 4, a(0)=0, a(1)=0, a(2)=4, a(3)=23, a(4)=76. - Yosu Yurramendi, Sep 03 2013
From Indranil Ghosh, Apr 05 2017: (Start)
G.f.: x^2*(4 + 3*x + x^2)/(1 - x)^5.
E.g.f.: exp(x)*x^2*(4+x)*(3+2*x)/6. (End)