OFFSET
0,1
LINKS
FORMULA
a(n) = a(n-1) + 20*n + 7 (with a(0)=6). - Vincenzo Librandi, Dec 27 2010
G.f.: (-6-15*x+x^2)/(-1+x)^3 - Harvey P. Dale, Jun 07 2021
Sum_{n>=0} 1/a(n) = 5/7 - sqrt(1+2/sqrt(5))*Pi/14 - sqrt(5)*log(phi)/14 - 5*log(5)/28 + 2*log(2)/7, where phi is the golden ratio (A001622). - Amiram Eldar, Aug 23 2022
From Elmo R. Oliveira, Oct 27 2024: (Start)
E.g.f.: exp(x)*(6 + 27*x + 10*x^2).
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n > 2. (End)
MATHEMATICA
Table[(2n+1)(5n+6), {n, 0, 50}] (* or *) LinearRecurrence[{3, -3, 1}, {6, 33, 80}, 50] (* Harvey P. Dale, Jun 07 2021 *)
PROG
(PARI) a(n)=(2*n+1)*(5*n+6) \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Dec 20 2008
STATUS
approved