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.

A067998 a(n) = n^2 - 2*n.

Original entry on oeis.org

0, -1, 0, 3, 8, 15, 24, 35, 48, 63, 80, 99, 120, 143, 168, 195, 224, 255, 288, 323, 360, 399, 440, 483, 528, 575, 624, 675, 728, 783, 840, 899, 960, 1023, 1088, 1155, 1224, 1295, 1368, 1443, 1520, 1599, 1680, 1763, 1848, 1935, 2024, 2115, 2208, 2303, 2400, 2499, 2600, 2703, 2808, 2915, 3024, 3135, 3248, 3363
Offset: 0

Views

Author

George E. Antoniou, Feb 06 2002

Keywords

Comments

a(n) is essentially the case 0 of the polygonal numbers. The polygonal numbers are defined as P_k(n) = Sum_{i=1..n} ((k-2)*i-(k-3)). Thus P_0(n) = 2*n - n^2 and a(n) = -P_0(n). - Peter Luschny, Jul 08 2011
For n >= 3, the denominator of the probability of winning the prize by switching from the initial choice of doors in a generalized Monty Hall problem with n doors: After a prize has been placed behind exactly one of the n doors at random, a contestant chooses a door. Then the host, who knows where the prize is, deliberately opens exactly one unchosen door that does not hide the prize (picked at random by the host among such doors when there is a choice) and then gives the contestant an opportunity to switch to any other door not yet opened. The numerator of this probability is n-1 (incidentally, gcd(n-1, n*(n-2)) = 1). The probability of winning by switching minus the probability of winning by not switching is thus (n-1)/(n*(n-2)) - 1/n = 1/a(n), which approaches zero as n approaches infinity, but nevertheless makes the switching strategy better for every finite n >= 3. The winning probability is 2/3 from switching in the classic 3-door Monty Hall problem; we have 3/8 and 4/15, respectively, in the 4- and 5-door generalizations. (The above analysis was independent but is consistent with the even more general "N-doors" section of the Wikipedia article, other parts of which make clear the historical importance of wording this problem as carefully as possible. See also A122774.) - Rick L. Shepherd, May 31 2014, clarified Oct 29 2015
For n > 1, a(n) is the largest integer k such that k + n^2 is a multiple of k + n. - Derek Orr, Sep 04 2014

Crossrefs

Essentially the same as A005563.
Cf. A060747 (first differences).
Cf. A000290.

Programs

Formula

a(n) = A005563(n-2) = A005563(-n) = A000290(n-1)-1.
G.f.: x*(3*x-1)/(1-x)^3. - Paul Barry, Mar 27 2007
E.g.f.: exp(x)*(x^2-x). - Paul Barry, Mar 27 2007
a(n) = 2*n + a(n-1) - 3 (with a(0)=0). - Vincenzo Librandi, Aug 08 2010
From Amiram Eldar, Feb 17 2023: (Start)
Sum_{n>=3} 1/a(n) = 3/4.
Sum_{n>=3} (-1)^(n+1)/a(n) = 1/4. (End)

Extensions

Edited and extended by Robert G. Wilson v, Feb 08 2002