[go: up one dir, main page]

login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A167614 a(n) = (n^2 + 3*n + 8)/2. 4
6, 9, 13, 18, 24, 31, 39, 48, 58, 69, 81, 94, 108, 123, 139, 156, 174, 193, 213, 234, 256, 279, 303, 328, 354, 381, 409, 438, 468, 499, 531, 564, 598, 633, 669, 706, 744, 783, 823, 864, 906, 949, 993, 1038, 1084, 1131, 1179, 1228, 1278, 1329, 1381, 1434, 1488 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = n + a(n-1) + 1, with n>1, a(1)=6.
G.f:: x*(6-9*x+4*x^2)/(1-x)^3. - Vincenzo Librandi, Sep 16 2013
A228446(a(n)) = 7. - Reinhard Zumkeller, Mar 12 2014
a(n) = A152950(n+2) = A152949(n+3) = A016028(n+5). - Mathew Englander, Feb 03 2022
MATHEMATICA
Table[(n(n+3))/2+4, {n, 80}] (* Harvey P. Dale, Mar 24 2011 *)
CoefficientList[Series[(6 - 9 x + 4 x^2)/(1 - x)^3, {x, 0, 60}], x] (* Vincenzo Librandi, Sep 16 2013 *)
PROG
(PARI) a(n)=n*(n+3)/2+4 \\ Charles R Greathouse IV, Jan 11 2012
(Magma) [(n^2+3*n+8)/2: n in [1..60]]; // Vincenzo Librandi, Sep 16 2013
(Python)
print([n*(n+3)//2+4 for n in range(1, 60)]) # Gennady Eremin, Feb 03 2022
CROSSREFS
Sequence in context: A315963 A315964 A315965 * A020751 A315966 A315967
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 07 2009
EXTENSIONS
Corrected (changed one term from 1036 to 1038) by Harvey P. Dale, Mar 24 2011
New name from Charles R Greathouse IV, Jan 11 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 30 09:28 EDT 2024. Contains 375532 sequences. (Running on oeis4.)