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!)
A196532 a(n) = (n+1)!*(H(n)+H(n+1)), where H(n) = Sum_{k=1..n} 1/k is the n-th harmonic number. 1
1, 5, 20, 94, 524, 3408, 25416, 214128, 2012832, 20894400, 237458880, 2932968960, 39126516480, 560704273920, 8591147712000, 140160890419200, 2425888391270400, 44398288688947200, 856727919929548800 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Denominator of a(n)/n! is listed in A096620.
a(n) - (n+1)*a(n-1) = A129326(n), n > 0. - Gary Detlefs, Oct 04 2011
LINKS
FORMULA
From Robert Israel, Mar 28 2018: (Start)
E.g.f.: (1+x - 2*log(1-x))/(1-x)^2.
a(n+3) = (3*n+8)*a(n+2) - (3*n+7)*(n+2)*a(n+1) + (n+1)*(n+2)^2*a(n). (End)
MAPLE
H:= n-> sum(1/k, k=1..n):seq((n+1)!*(H(n+1)+H(n)), n=0..20);
# Alternative:
f:= gfun:-rectoproc({a(n+3) = (3*n+8)*a(n+2)-(3*n+7)*(n+2)*a(n+1)+(n+1)*(n+2)^2*a(n), a(0)=1, a(1)=5, a(2)=20}, a(n), remember):
map(f, [$0..50]); # Robert Israel, Mar 28 2018
MATHEMATICA
Table[(n+1)!Total[HarmonicNumber[{n, n+1}]], {n, 0, 20}] (* Harvey P. Dale, Jul 17 2013 *)
CROSSREFS
Sequence in context: A360076 A365115 A352149 * A002745 A182959 A224661
KEYWORD
nonn
AUTHOR
Gary Detlefs, Oct 03 2011
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 April 16 08:27 EDT 2024. Contains 371698 sequences. (Running on oeis4.)