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.

A167499 a(n) = n*(n+3)/2 + 6.

Original entry on oeis.org

6, 8, 11, 15, 20, 26, 33, 41, 50, 60, 71, 83, 96, 110, 125, 141, 158, 176, 195, 215, 236, 258, 281, 305, 330, 356, 383, 411, 440, 470, 501, 533, 566, 600, 635, 671, 708, 746, 785, 825, 866, 908, 951, 995, 1040, 1086, 1133, 1181, 1230, 1280, 1331, 1383, 1436, 1490
Offset: 0

Views

Author

Vincenzo Librandi, Nov 07 2009

Keywords

Comments

Numbers m > 5 such that 8*m - 39 is a square. - Bruce J. Nicholson, Jul 25 2017

Crossrefs

Cf. A187710.

Programs

Formula

a(n) = n + a(n-1) + 1, with n > 1, a(1) = 8.
From Vincenzo Librandi, Sep 16 2013: (Start)
G.f.: (6 - 10*x + 5*x^2)/(1-x)^3.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3). (End)
Sum_{n>=0} 1/a(n) = 2*Pi*tanh(Pi*sqrt(39)/2)/sqrt(39) - 1/5. - Amiram Eldar, Jan 17 2021
From Elmo R. Oliveira, Oct 31 2024: (Start)
E.g.f.: exp(x)*(6 + 2*x + x^2/2).
a(n) = A187710(n+1)/2. (End)