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.

A099099 Quadrisection of a generalized Padovan sequence.

Original entry on oeis.org

1, 1, 1, 2, 6, 16, 37, 80, 172, 377, 839, 1874, 4175, 9274, 20577, 45665, 101393, 225193, 500162, 1110790, 2466760, 5477917, 12164896, 27015092, 59993817, 133231279, 295872778, 657057431, 1459155634, 3240410561, 7196122817
Offset: 0

Views

Author

Paul Barry, Sep 29 2004

Keywords

Comments

Quadrisection of sequence with g.f. 1/(1 - x^3 - x^4), or A017817.

Programs

Formula

G.f.: (1-x)^3/((1-x)^4-x^3).
a(n) = sum_{k=0..2n} binomial(k, 4n-3k).
a(n) = 4a(n-1) - 6a(n-2) + 5a(n-3) - a(n-4).
a(n) = A017817(4n).
a(n) = sum_{k=0..floor((n+1)/2)} binomial(n+k, 4k). - Paul Barry, May 09 2005