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.

A254367 a(n) = 5*2^(n+2) + 2^(2n+2) + 10*3^n + 5^n + 35.

Original entry on oeis.org

70, 126, 294, 846, 2814, 10326, 40614, 168126, 723534, 3208806, 14570934, 67417806, 316645854, 1505245686, 7225414854, 34956689886, 170199537774, 832952952966, 4093454620374, 20184631056366, 99800366967294, 494533989722646, 2454868429675494
Offset: 0

Views

Author

Luciano Ancora, Jan 30 2015

Keywords

Comments

This is the sequence of fifth terms of "fourth partial sums of m-th powers".

Crossrefs

Programs

  • Magma
    [5*2^(n+2)+2^(2*n+2)+10*3^n+5^n+35: n in [0..30]]; // Vincenzo Librandi, Feb 02 2015
  • Mathematica
    Table[5 2^(n + 2) + 2^(2 n + 2) + 10 3^n + 5^n + 35, {n, 0, 30}] (* Vincenzo Librandi, Feb 02 2015 *)
  • PARI
    vector(30, n, n--; 5*2^(n+2) + 2^(2*n+2) + 10*3^n + 5^n + 35) \\ Colin Barker, Jan 30 2015
    

Formula

a(n) = 15*a(n-1)-85*a(n-2)+225*a(n-3)-274*a(n-4)+120*a(n-5). - Colin Barker, Jan 30 2015
G.f.: -2*(2972*x^4-4302*x^3+2177*x^2-462*x+35) / ((x-1)*(2*x-1)*(3*x-1)*(4*x-1)*(5*x-1)). - Colin Barker, Jan 30 2015