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.

A191497 a(n+1) = 2*a(n) + A014017(n+5), a(0) = 0.

Original entry on oeis.org

0, 0, 0, 0, 1, 2, 4, 8, 15, 30, 60, 120, 241, 482, 964, 1928, 3855, 7710, 15420, 30840, 61681, 123362, 246724, 493448, 986895, 1973790, 3947580, 7895160, 15790321, 31580642, 63161284, 126322568, 252645135
Offset: 0

Views

Author

Paul Curtz, Jun 03 2011

Keywords

Crossrefs

Programs

Formula

a(n+4) = 2^n - a(n).
a(n) = 2*a(n-1) - a(n-4) + 2*a(n-5).
a(4*n+4) = 16*a(4*n) + (-1)^n.
From R. J. Mathar, Jun 23 2011: (Start)
G.f.: -x^4 / ((2*x-1)*(x^4+1)).
a(n) = (2^n - (-1)^floor(n/4)*A133145(n))/17. (End)