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.

A081040 5th binomial transform of (1,4,0,0,0,0,...).

Original entry on oeis.org

1, 9, 65, 425, 2625, 15625, 90625, 515625, 2890625, 16015625, 87890625, 478515625, 2587890625, 13916015625, 74462890625, 396728515625, 2105712890625, 11138916015625, 58746337890625, 308990478515625, 1621246337890625
Offset: 0

Views

Author

Paul Barry, Mar 03 2003

Keywords

Crossrefs

Programs

Formula

a(n) = 10*a(n-1) - 25*a(n-2), a(0)=1, a(1)=9.
a(n) = (4n+5)*5^(n-1).
a(n) = Sum_{k=0..n} (k+1)*4^k*binomial(n, k).
G.f.: (1-x)/(1-5*x)^2.
E.g.f.: exp(5*x)*(1 + 4*x). - Stefano Spezia, Jan 31 2025