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.

A016150 Expansion of g.f. 1/((1-4*x)*(1-7*x)).

Original entry on oeis.org

1, 11, 93, 715, 5261, 37851, 269053, 1899755, 13363821, 93808891, 657710813, 4608169995, 32273967181, 225984879131, 1582162589373, 11076211867435, 77537778039341, 542781626144571, 3799540102488733, 26597055595328075, 186180488678924301, 1303267818798981211, 9122892323778912893
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A190542.

Programs

Formula

From Barry E. Williams, Jan 13 2000: (Start)
a(n) = (7^(n+1) - 4^(n+1))/3.
a(n) = 11*a(n-1) - 28*a(n-2) for n>0, a(0)=1. (End)
a(n) = Sum_{k=0..n} 7^k*4^(n-k). - Bruno Berselli, Aug 07 2013
From Elmo R. Oliveira, Mar 26 2025: (Start)
E.g.f.: exp(4*x)*(7*exp(3*x) - 4)/3.
a(n) = A190542(n+1)/3. (End)