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.

A271779 a(n) = n^3 + 2*n^2 + 5*n + 11.

Original entry on oeis.org

11, 19, 37, 71, 127, 211, 329, 487, 691, 947, 1261, 1639, 2087, 2611, 3217, 3911, 4699, 5587, 6581, 7687, 8911, 10259, 11737, 13351, 15107, 17011, 19069, 21287, 23671, 26227, 28961, 31879, 34987, 38291, 41797, 45511, 49439, 53587, 57961, 62567, 67411, 72499
Offset: 0

Views

Author

Vincenzo Librandi, Apr 14 2016

Keywords

Crossrefs

Subsequence of A001651, A032793.

Programs

  • Magma
    [n^3+2*n^2+5*n+11: n in [0..50]];
    
  • Mathematica
    Table[n^3 + 2 n^2 + 5 n + 11, {n, 0, 50}]
  • PARI
    vector(50, n, n--; n^3+2*n^2+5*n+11) \\ Altug Alkan, Apr 14 2016

Formula

O.g.f.: (11 - 25*x + 27*x^2 - 7*x^3)/(1 - x)^4.
E.g.f.: (11 + 8*x + 5*x^2 + x^3)*exp(x).
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) for n>3.