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.

A083325 a(n) = 5^n - 4^n + 3^n.

Original entry on oeis.org

1, 4, 18, 88, 450, 2344, 12258, 63928, 331650, 1710664, 8776098, 44810968, 227894850, 1155188584, 5839863138, 29458185208, 148335970050, 745888724104, 3746365209378, 18799770682648, 94271406797250, 472449572045224, 2366624986030818, 11850654354079288
Offset: 0

Views

Author

Paul Barry, Apr 27 2003

Keywords

Comments

Binomial transform of A083324.

Examples

			a(2) = 5^2 - 4^2 + 3^2 =  25 - 16 +  9 = 18.
a(3) = 5^3 - 4^3 + 3^3 = 125 - 64 + 27 = 88.
		

Programs

Formula

a(n) = 5^n - 4^n + 3^n.
G.f.: (1 - 8*x + 17*x^2)/((1 - 3*x)(1 - 4*x)(1 - 5*x)).
E.g.f.: exp(5x) - exp(4x) + exp(3x).