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.

A014166 Apply partial sum operator 4 times to Fibonacci numbers.

Original entry on oeis.org

0, 1, 5, 16, 41, 92, 189, 365, 674, 1204, 2098, 3588, 6050, 10093, 16703, 27476, 44995, 73440, 119575, 194345, 315460, 511576, 829060, 1342936, 2174596, 3520457, 5698329, 9222440, 14924829, 24151764, 39081553
Offset: 0

Views

Author

Keywords

Crossrefs

Right-hand column 8 of triangle A011794.

Programs

  • GAP
    List([0..30], n-> Fibonacci(n+8)-(n^3+12*n^2+59*n+126)/6); # G. C. Greubel, Sep 06 2019
  • Magma
    [Fibonacci(n+8)-(n^3+12*n^2+59*n+126)/6: n in [0..30]]; // G. C. Greubel, Sep 06 2019
    
  • Maple
    with(combinat); seq(fibonacci(n+8)-(n^3+12*n^2+59*n+126)/6, n = 0..30); # G. C. Greubel, Sep 06 2019
  • Mathematica
    Nest[Accumulate, Fibonacci[Range[0, 30]], 4] (* Jean-François Alcover, Jan 08 2019 *)
  • PARI
    a(n)=fibonacci(n+8)-(n^3+12*n^2+59*n+126)/6 \\ Charles R Greathouse IV, Jun 11 2015
    
  • Sage
    [fibonacci(n+8)-(n^3+12*n^2+59*n+126)/6 for n in (0..30)] # G. C. Greubel, Sep 06 2019
    

Formula

a(n) = Fibonacci(n+8) - (n^3 +12*n^2 +59*n +126)/6.
G.f.: x/((1-x)^4*(1-x-x^2)).