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.

A196514 Partial sums of A100381.

Original entry on oeis.org

0, 4, 28, 124, 444, 1404, 4092, 11260, 29692, 75772, 188412, 458748, 1097724, 2588668, 6029308, 13893628, 31719420, 71827452, 161480700, 360710140, 801112060, 1769996284, 3892314108, 8522825724, 18589155324, 40399536124, 87509958652
Offset: 0

Views

Author

R. J. Mathar, Oct 03 2011

Keywords

Comments

Like any sequence with a linear recurrence, this has a Pisano period length modulo any k >= 1. The period lengths for this sequence are (modulo k >= 1) 1, 1, 6, 1, 20, 6, 21, 1, 18, 20, 110, 6, 156, 21, 60, 1, 136, 18, 342, 20, ....

References

  • Jolley, Summation of Series, Dover (1961), eq (53) page 10.

Programs

Formula

G.f.: 4*x / ( (x-1)*(2*x-1)^3 ).
a(n) = (n^2 - n + 2)*2^(n+1) - 4 = 4*A055580(n-1).
a(n) = 7*a(n-1) - 18*a(n-2) + 20*a(n-3) - 8*a(n-4); a(0)=0, a(1)=4, a(2)=28, a(3)=124. - Harvey P. Dale, Jan 12 2016