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.

A210675 a(n)=a(n-1)+a(n-2)+n+4, a(0)=0, a(1)=1.

Original entry on oeis.org

0, 1, 7, 15, 30, 54, 94, 159, 265, 437, 716, 1168, 1900, 3085, 5003, 8107, 13130, 21258, 34410, 55691, 90125, 145841, 235992, 381860, 617880, 999769, 1617679, 2617479, 4235190, 6852702, 11087926, 17940663, 29028625, 46969325, 75997988, 122967352, 198965380
Offset: 0

Views

Author

Alex Ratushnyak, May 09 2012

Keywords

Crossrefs

Cf. A210673: a(n)=a(n-1)+a(n-2)+n-4, a(0)=0,a(1)=1.
Cf. A066982: a(n)=a(n-1)+a(n-2)+n-2, a(0)=0,a(1)=1 (except the first term).
Cf. A104161: a(n)=a(n-1)+a(n-2)+n-1, a(0)=0,a(1)=1.
Cf. A001924: a(n)=a(n-1)+a(n-2)+n, a(0)=0,a(1)=1.
Cf. A192760: a(n)=a(n-1)+a(n-2)+n+1, a(0)=0,a(1)=1.
Cf. A192761: a(n)=a(n-1)+a(n-2)+n+2, a(0)=0,a(1)=1.
Cf. A192762: a(n)=a(n-1)+a(n-2)+n+3, a(0)=0,a(1)=1.

Programs

Formula

a(n) = 3*a(n-1)-2*a(n-2)-a(n-3)+a(n-4). G.f.: x*(4*x^2-4*x-1) / ((x-1)^2*(x^2+x-1)). - Colin Barker, May 31 2013