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.

A081039 4th binomial transform of (1,3,0,0,0,0,0,.....).

Original entry on oeis.org

1, 7, 40, 208, 1024, 4864, 22528, 102400, 458752, 2031616, 8912896, 38797312, 167772160, 721420288, 3087007744, 13153337344, 55834574848, 236223201280, 996432412672, 4191888080896, 17592186044416, 73667279060992
Offset: 0

Views

Author

Paul Barry, Mar 03 2003

Keywords

Crossrefs

Programs

Formula

a(n) = 8*a(n-1) -16*a(n-2) with n>1, a(0)=1, a(1)=7.
a(n) = (3*n+4)*4^(n-1).
a(n) = Sum_{k=0..n} (k+1)*3^k*binomial(n, k).
G.f.: (1-x)/(1-4*x)^2.
E.g.f.: exp(4*x)*(1 + 3*x). - Stefano Spezia, Jan 31 2025