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.

A207836 a(n) = n*A052530(n)/2.

Original entry on oeis.org

0, 3, 16, 75, 336, 1463, 6240, 26199, 108640, 445995, 1815792, 7341347, 29505840, 117982815, 469672384, 1862393775, 7359403968, 28991540051, 113892526800, 446305331451, 1744950085648, 6808253393415, 26513475730464, 103072540115975, 400058834841120
Offset: 2

Views

Author

N. J. A. Sloane, Feb 21 2012

Keywords

Crossrefs

Cf. A052530.

Programs

  • PARI
    concat(0, Vec(x^3*(x^2-8*x+3)/(x^2-4*x+1)^2 + O(x^100))) \\ Colin Barker, Jun 08 2015

Formula

a(n) = 8*a(n-1)-18*a(n-2)+8*a(n-3)-a(n-4) for n>5. - Colin Barker, Jun 08 2015
G.f.: x^3*(x^2-8*x+3) / (x^2-4*x+1)^2. - Colin Barker, Jun 08 2015