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.

A227832 Sum of odd numbers starting with 1, alternating signs (beginning with plus).

Original entry on oeis.org

1, 4, -1, 6, -3, 8, -5, 10, -7, 12, -9, 14, -11, 16, -13, 18, -15, 20, -17, 22, -19, 24, -21, 26, -23, 28, -25, 30, -27, 32, -29, 34, -31, 36, -33, 38, -35, 40, -37, 42, -39, 44, -41, 46, -43, 48, -45, 50, -47, 52, -49
Offset: 1

Views

Author

D.Wilde, Aug 02 2013

Keywords

Comments

1st,3rd,5th (odd terms) increase by 2, 2nd,4th,6th,8th (even terms) decrease by 2 each time.

Examples

			(1+3)=4 (4-5)=-1 (-1+7)=6 (6-9)=-3 (-3+11)=8 (8-13)=-5 (-5+15)=10.
		

Crossrefs

Cf. A065164 (absolute values).

Programs

Formula

a(n) = -a(n-1) + a(n-2) + a(n-3). - Charles R Greathouse IV, Aug 02 2013
G.f.: x*(2*x^2 + 5*x + 1)/((1-x)*(1+x)^2). a(n) = n*(-1)^n + 2 = A038608(n) + 2. - Ralf Stephan, Aug 07 2013