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.

A173562 a(n) = n^2 + floor(n/4).

Original entry on oeis.org

0, 1, 4, 9, 17, 26, 37, 50, 66, 83, 102, 123, 147, 172, 199, 228, 260, 293, 328, 365, 405, 446, 489, 534, 582, 631, 682, 735, 791, 848, 907, 968, 1032, 1097, 1164, 1233, 1305, 1378, 1453, 1530, 1610, 1691, 1774, 1859, 1947, 2036, 2127, 2220, 2316, 2413, 2512
Offset: 0

Views

Author

Reinhard Zumkeller, Feb 21 2010

Keywords

Crossrefs

Programs

Formula

a(n) = A002378(n)-A057353(n) = A035608(n)-A002265(n+2) = A000290(n)+A002265(n);
a(n+1) - a(n) = A047624(n+2).
a(n) = floor((n + 1/8)^2).
a(n) = 2*a(n-1) - a(n-2) + a(n-4) - 2*a(n-5) + a(n-6) for n>5.
G.f.: x*(1+2*x+2*x^2+3*x^3)/((1+x)*(x^2+1)*(1-x)^3). - R. J. Mathar, Feb 27 2010
a(n) = (8*n^2+2*n-3+i^(2*n)+(1+i)*i^(-n)+(1-i)*i^n)/8 where i=sqrt(-1). - Wesley Ivan Hurt, Jun 04 2016