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.

A016874 a(n) = (5*n + 2)^2.

Original entry on oeis.org

4, 49, 144, 289, 484, 729, 1024, 1369, 1764, 2209, 2704, 3249, 3844, 4489, 5184, 5929, 6724, 7569, 8464, 9409, 10404, 11449, 12544, 13689, 14884, 16129, 17424, 18769, 20164, 21609, 23104, 24649, 26244
Offset: 0

Views

Author

Keywords

Examples

			a(0) = (5*0 + 2)^2 = 4.
		

Programs

Formula

a(n) = a(n-1) + 50*n - 5; a(0)=4. - Vincenzo Librandi, Jun 07 2011
Sum_{n>=0} 1/a(n) = polygamma(1, 2/5)/25 = 0.2910142636... - Amiram Eldar, Oct 02 2020
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Wesley Ivan Hurt, Oct 02 2020
G.f.: -(4+x)*(1+9*x)/(-1+x)^3. - Wesley Ivan Hurt, Oct 02 2020