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.

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

Original entry on oeis.org

0, 1, 5, 28, 155, 859, 4760, 26377, 146165, 809956, 4488275, 24871243, 137821040, 763718929, 4232057765, 23451445612, 129953401355, 720121343611, 3990466922120, 22112698641433, 122534893973525, 679012565791924, 3762667510880195, 20850375251776747
Offset: 0

Views

Author

Keywords

Comments

This is the Lucas sequence U(5,-3). - Bruno Berselli, Jan 09 2013

Programs

Formula

a(n) = 5*a(n-1) + 3*a(n-2) with n > 1, a(0)=0, a(1)=1.
From Paul Barry, Jul 20 2004: (Start)
a(n) = (5/2 + sqrt(37)/2)^n/sqrt(37) - (5/2 - sqrt(37)/2)^n/sqrt(37).
a(n) = Sum_{k=0..floor((n-1)/2)} binomial(n-k-1, k)3^k*5^(n-2k-1). (End)