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.

A054470 Partial sums of A054469.

Original entry on oeis.org

1, 8, 36, 121, 339, 838, 1891, 3983, 7953, 15225, 28183, 50779, 89518, 155053, 264767, 446952, 747572, 1241207, 2048762, 3366122, 5510518, 8995550, 14652578, 23827138, 38696751, 62785150, 101794318, 164950755, 267183785, 432650132
Offset: 0

Views

Author

Barry E. Williams, Mar 31 2000

Keywords

References

  • A. H. Beiler, Recreations in the Theory of Numbers, Dover, N.Y., 1964, pp. 194-196.

Crossrefs

Right-hand column 13 of triangle A011794.

Programs

  • Magma
    A054470:= func< n | Fibonacci(n+14) - (45120 +21458*n +4925*n^2 +680*n^3 +55*n^4 +2*n^5)/120 >;
    [A054470(n): n in [0..40]]; // G. C. Greubel, Oct 21 2024
    
  • Mathematica
    Accumulate[RecurrenceTable[{a[0]==1,a[1]==7,a[n]==a[n-1]+a[n-2]+(n+2) Binomial[n+3,3]/2},a,{n,40}]] (* Harvey P. Dale, Sep 22 2013 *)
    CoefficientList[Series[(1+x)/((1-x)^6*(1-x-x^2)), {x, 0, 40}], x] (* Vincenzo Librandi, Sep 23 2013 *)
  • SageMath
    def A054470(n): return fibonacci(n+14) -(45120 +21458*n +4925*n^2 +680*n^3 +55*n^4 +2*n^5)//120
    [A054470(n) for n in range(41)] # G. C. Greubel, Oct 21 2024

Formula

a(n) = a(n-1) + a(n-2) + (2*n+5)*C(n+4, 4)/5, with a(-n) = 0.
a(n) = Sum_{j=1..[(n+2)/2]} binomial(n+6-j, n+2-2*j) + 2*Sum_{j=1..[(n+1)/2]} binomial(n+6-j, n+1-2*j), where [x]=greatest integer in x.
G.f.: (1+x) / ((1-x)^6*(1-x-x^2)). - Colin Barker, Jun 11 2013
From G. C. Greubel, Oct 21 2024: (Start)
a(n) = Fibonacci(n+14) - Sum_{j=0..5} Fibonacci(13-2*j)*binomial(n+j,j).
a(n) = Fibonacci(n+14) - (1/120)*(45120 + 21458*n + 4925*n^2 + 680*n^3 + 55*n^4 + 2*n^5). (End)