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.

A077938 Expansion of 1/(1 - 2*x - x^2 - 2*x^3).

Original entry on oeis.org

1, 2, 5, 14, 37, 98, 261, 694, 1845, 4906, 13045, 34686, 92229, 245234, 652069, 1733830, 4610197, 12258362, 32594581, 86667918, 230447141, 612751362, 1629285701, 4332217046, 11519222517, 30629233482, 81442123573, 216551925662, 575804441861, 1531045056530
Offset: 0

Views

Author

N. J. A. Sloane, Nov 17 2002

Keywords

Comments

Number of compositions of n into two sorts of parts 1 and 3, and one sort of parts 2. - Joerg Arndt, May 02 2015

Crossrefs

Absolute values of A077987.

Programs

Formula

a(n)=sum(k=1..n, sum(j=0..k, binomial(j,n-3*k+2*j)* binomial(k,j)*2^(-n+4*k-2*j))), n>0, a(0)=1. [Vladimir Kruchinin, May 05 2011]
a(n) = 2*a(n-1) + a(n-2) + 2*a(n-3). [Stefan Schuster, Apr 24 2015]