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.

A013830 a(n) = 4^(5*n + 1).

Original entry on oeis.org

4, 4096, 4194304, 4294967296, 4398046511104, 4503599627370496, 4611686018427387904, 4722366482869645213696, 4835703278458516698824704, 4951760157141521099596496896, 5070602400912917605986812821504
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A000302 (4^n), A016861 (5*n+1).

Programs

Formula

From Philippe Deléham, Nov 30 2008: (Start)
a(n) = 1024*a(n-1), n > 0; a(0)=4.
G.f.: 4/(1-1024*x). (End)